From 358ba07166aba0e9a8ec23d927b414ad41e0f9de Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 23 Aug 2008 14:23:50 +0000 Subject: [PATCH] Fixed #7946: Modified object history template to use a common date format. Thanks to Marc Garcia for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8485 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/templates/admin/object_history.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/admin/templates/admin/object_history.html b/django/contrib/admin/templates/admin/object_history.html index 19c037cda9..c37012b296 100644 --- a/django/contrib/admin/templates/admin/object_history.html +++ b/django/contrib/admin/templates/admin/object_history.html @@ -21,7 +21,7 @@ {% for action in action_list %} - {{ action.action_time|date:_("DATE_WITH_TIME_FULL") }} + {{ action.action_time|date:_("DATETIME_FORMAT") }} {{ action.user.username }}{% if action.user.first_name %} ({{ action.user.first_name }} {{ action.user.last_name }}){% endif %} {{ action.change_message }}