make userportfoliopermission editable again

also removed help text
This commit is contained in:
zandercymatics 2024-09-25 12:14:47 -06:00
parent d6542f18b1
commit 7b2b4f0401
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
5 changed files with 49 additions and 22 deletions

View file

@ -41,7 +41,6 @@ class Portfolio(TimeStampedModel):
choices=OrganizationChoices.choices,
null=True,
blank=True,
help_text="Type of organization",
)
notes = models.TextField(
@ -52,7 +51,6 @@ class Portfolio(TimeStampedModel):
federal_agency = models.ForeignKey(
"registrar.FederalAgency",
on_delete=models.PROTECT,
help_text="Associated federal agency",
unique=False,
default=FederalAgency.get_non_federal_agency,
)