diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-23 14:23:50 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-23 14:23:50 +0000 |
| commit | 358ba07166aba0e9a8ec23d927b414ad41e0f9de (patch) | |
| tree | 1d15dfb360e34258b4ad6eb483f2d8928ccb35cc | |
| parent | a9ee1d4e28f4e6509dd910982b5504bc6a3554cc (diff) | |
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
| -rw-r--r-- | django/contrib/admin/templates/admin/object_history.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ <tbody> {% for action in action_list %} <tr> - <th scope="row">{{ action.action_time|date:_("DATE_WITH_TIME_FULL") }}</th> + <th scope="row">{{ action.action_time|date:_("DATETIME_FORMAT") }}</th> <td>{{ action.user.username }}{% if action.user.first_name %} ({{ action.user.first_name }} {{ action.user.last_name }}){% endif %}</td> <td>{{ action.change_message }}</td> </tr> |
