Added portfolio to admin frontend for domain_request and domain_information

This commit is contained in:
CocoByte 2024-06-18 17:56:25 -06:00
parent a8229cd7ca
commit 97139076ae
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F
2 changed files with 5 additions and 1 deletions

View file

@ -97,3 +97,6 @@ class Portfolio(TimeStampedModel):
verbose_name="security contact e-mail",
max_length=320,
)
def __str__(self) -> str:
return f"{self.organization_name}"