mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-15 17:17:02 +02:00
Add notes field
This commit is contained in:
parent
9b691affdc
commit
65ff4ece76
5 changed files with 76 additions and 8 deletions
|
@ -737,7 +737,18 @@ class DomainApplicationAdmin(ListHeaderAdmin):
|
|||
# Detail view
|
||||
form = DomainApplicationAdminForm
|
||||
fieldsets = [
|
||||
(None, {"fields": ["status", "investigator", "creator", "approved_domain"]}),
|
||||
(
|
||||
None,
|
||||
{
|
||||
"fields": [
|
||||
"status",
|
||||
"investigator",
|
||||
"creator",
|
||||
"approved_domain",
|
||||
"notes"
|
||||
]
|
||||
}
|
||||
),
|
||||
(
|
||||
"Type of organization",
|
||||
{
|
||||
|
@ -991,6 +1002,22 @@ class DomainAdmin(ListHeaderAdmin):
|
|||
"deleted",
|
||||
]
|
||||
|
||||
fieldsets = (
|
||||
(
|
||||
None,
|
||||
{
|
||||
"fields": [
|
||||
"name",
|
||||
"state",
|
||||
"expiration_date",
|
||||
"first_ready",
|
||||
"deleted",
|
||||
"notes"
|
||||
]
|
||||
},
|
||||
),
|
||||
)
|
||||
|
||||
# this ordering effects the ordering of results
|
||||
# in autocomplete_fields for domain
|
||||
ordering = ["name"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue