This commit is contained in:
zandercymatics 2024-01-24 13:49:16 -07:00
parent 65ff4ece76
commit c345ab90ec
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -737,18 +737,7 @@ class DomainApplicationAdmin(ListHeaderAdmin):
# Detail view # Detail view
form = DomainApplicationAdminForm form = DomainApplicationAdminForm
fieldsets = [ fieldsets = [
( (None, {"fields": ["status", "investigator", "creator", "approved_domain", "notes"]}),
None,
{
"fields": [
"status",
"investigator",
"creator",
"approved_domain",
"notes"
]
}
),
( (
"Type of organization", "Type of organization",
{ {
@ -1005,16 +994,7 @@ class DomainAdmin(ListHeaderAdmin):
fieldsets = ( fieldsets = (
( (
None, None,
{ {"fields": ["name", "state", "expiration_date", "first_ready", "deleted", "notes"]},
"fields": [
"name",
"state",
"expiration_date",
"first_ready",
"deleted",
"notes"
]
},
), ),
) )