mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-16 01:27:03 +02:00
change first_ready_at and deleted_at to first_ready and deleted
This commit is contained in:
parent
0ce04007ff
commit
72edec8362
6 changed files with 57 additions and 57 deletions
|
@ -985,8 +985,8 @@ class DomainAdmin(ListHeaderAdmin):
|
|||
"state",
|
||||
"expiration_date",
|
||||
"created_at",
|
||||
"first_ready_at",
|
||||
"deleted_at",
|
||||
"first_ready",
|
||||
"deleted",
|
||||
]
|
||||
|
||||
# this ordering effects the ordering of results
|
||||
|
@ -1005,7 +1005,7 @@ class DomainAdmin(ListHeaderAdmin):
|
|||
search_help_text = "Search by domain name."
|
||||
change_form_template = "django/admin/domain_change_form.html"
|
||||
change_list_template = "django/admin/domain_change_list.html"
|
||||
readonly_fields = ["state", "expiration_date", "first_ready_at", "deleted_at"]
|
||||
readonly_fields = ["state", "expiration_date", "first_ready", "deleted"]
|
||||
|
||||
# Table ordering
|
||||
ordering = ["name"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue