mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-22 18:56:15 +02:00
Convert created to created_at in log entry admin
This commit is contained in:
parent
6bce068e96
commit
49a107e027
1 changed files with 7 additions and 0 deletions
|
@ -290,6 +290,13 @@ class CustomLogEntryAdmin(LogEntryAdmin):
|
||||||
# Return the field value without a link
|
# Return the field value without a link
|
||||||
return f"{obj.content_type} - {obj.object_repr}"
|
return f"{obj.content_type} - {obj.object_repr}"
|
||||||
|
|
||||||
|
# We name the custom prop 'created_at' because linter
|
||||||
|
# is not allowing a short_description attr on it
|
||||||
|
# This gets around the linter limitation, for now.
|
||||||
|
@admin.display(description=_("Created at"))
|
||||||
|
def created(self, obj):
|
||||||
|
return obj.timestamp
|
||||||
|
|
||||||
search_help_text = "Search by resource, changes, or user."
|
search_help_text = "Search by resource, changes, or user."
|
||||||
|
|
||||||
change_form_template = "admin/change_form_no_submit.html"
|
change_form_template = "admin/change_form_no_submit.html"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue