diff --git a/src/registrar/admin.py b/src/registrar/admin.py index 41d3a56fb..2d6559570 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -1126,7 +1126,6 @@ class DomainInformationAdmin(ListHeaderAdmin, ImportExportModelAdmin): "Type of organization", { "fields": [ - "generic_org_type", "is_election_board", "organization_type", ] @@ -1173,7 +1172,7 @@ class DomainInformationAdmin(ListHeaderAdmin, ImportExportModelAdmin): ] # Readonly fields for analysts and superusers - readonly_fields = ("other_contacts", "generic_org_type", "is_election_board", "federal_agency") + readonly_fields = ("other_contacts", "is_election_board", "federal_agency") # Read only that we'll leverage for CISA Analysts analyst_readonly_fields = [ @@ -1387,7 +1386,6 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin): "Type of organization", { "fields": [ - "generic_org_type", "is_election_board", "organization_type", ] @@ -1438,7 +1436,6 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin): "other_contacts", "current_websites", "alternative_domains", - "generic_org_type", "is_election_board", "federal_agency", ) diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index e65d3d4c4..e2d390471 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -2230,7 +2230,6 @@ class TestDomainRequestAdmin(MockEppLib): "other_contacts", "current_websites", "alternative_domains", - "generic_org_type", "is_election_board", "federal_agency", "id", @@ -2285,7 +2284,6 @@ class TestDomainRequestAdmin(MockEppLib): "other_contacts", "current_websites", "alternative_domains", - "generic_org_type", "is_election_board", "federal_agency", "creator", @@ -2314,7 +2312,6 @@ class TestDomainRequestAdmin(MockEppLib): "other_contacts", "current_websites", "alternative_domains", - "generic_org_type", "is_election_board", "federal_agency", ] @@ -3173,7 +3170,6 @@ class TestDomainInformationAdmin(TestCase): expected_fields = [ "other_contacts", - "generic_org_type", "is_election_board", "federal_agency", "creator",