Merge pull request #2618 from cisagov/ms/2451-additional-domain-request-dates

Issue #2541 additional domain request dates [getgov-litterbox]
This commit is contained in:
Matt-Spence 2024-08-29 13:07:50 -05:00 committed by GitHub
commit ec56f176de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 219 additions and 69 deletions

View file

@ -1698,7 +1698,9 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin):
# Columns
list_display = [
"requested_domain",
"submission_date",
"first_submitted_date",
"last_submitted_date",
"last_status_update",
"status",
"generic_org_type",
"federal_type",
@ -1901,7 +1903,7 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin):
# Table ordering
# NOTE: This impacts the select2 dropdowns (combobox)
# Currentl, there's only one for requests on DomainInfo
ordering = ["-submission_date", "requested_domain__name"]
ordering = ["-last_submitted_date", "requested_domain__name"]
change_form_template = "django/admin/domain_request_change_form.html"