Remove generic org type from fields

This commit is contained in:
zandercymatics 2024-05-23 10:07:41 -06:00
parent 9118eacb54
commit 15bf1a0490
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -1124,7 +1124,6 @@ class DomainInformationAdmin(ListHeaderAdmin, ImportExportModelAdmin):
"Type of organization", "Type of organization",
{ {
"fields": [ "fields": [
"generic_org_type",
"is_election_board", "is_election_board",
"organization_type", "organization_type",
] ]
@ -1171,7 +1170,7 @@ class DomainInformationAdmin(ListHeaderAdmin, ImportExportModelAdmin):
] ]
# Readonly fields for analysts and superusers # Readonly fields for analysts and superusers
readonly_fields = ("other_contacts", "generic_org_type", "is_election_board") readonly_fields = ("other_contacts", "is_election_board")
# Read only that we'll leverage for CISA Analysts # Read only that we'll leverage for CISA Analysts
analyst_readonly_fields = [ analyst_readonly_fields = [
@ -1385,7 +1384,6 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin):
"Type of organization", "Type of organization",
{ {
"fields": [ "fields": [
"generic_org_type",
"is_election_board", "is_election_board",
"organization_type", "organization_type",
] ]
@ -1436,7 +1434,6 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin):
"other_contacts", "other_contacts",
"current_websites", "current_websites",
"alternative_domains", "alternative_domains",
"generic_org_type",
"is_election_board", "is_election_board",
) )