mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-14 06:55:08 +02:00
Add DraftDomain to superusers and staff, Add filter to domains (state), Update user table definition to show first, last AND email by default, Use inline editors to expose DomainInformation, Make Domain Information fields available to CISA Analyst
This commit is contained in:
parent
4daec217d7
commit
3310689519
3 changed files with 204 additions and 101 deletions
|
@ -45,7 +45,7 @@ class User(AbstractUser):
|
|||
def __str__(self):
|
||||
# this info is pulled from Login.gov
|
||||
if self.first_name or self.last_name:
|
||||
return f"{self.first_name or ''} {self.last_name or ''}"
|
||||
return f"{self.first_name or ''} {self.last_name or ''} {self.email or ''}"
|
||||
elif self.email:
|
||||
return self.email
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue