Author: russellm
Date: 2008-08-23 09:23:50 -0500 (Sat, 23 Aug 2008)
New Revision: 8485
Modified:
django/trunk/django/contrib/admin/templates/admin/object_history.html
Log:
Fixed #7946: Modified object history template to use a common date format.
Thanks to Marc Garcia for the report and patch.
Modified: django/trunk/django/contrib/admin/templates/admin/object_history.html
===================================================================
--- django/trunk/django/contrib/admin/templates/admin/object_history.html
2008-08-23 14:12:58 UTC (rev 8484)
+++ django/trunk/django/contrib/admin/templates/admin/object_history.html
2008-08-23 14:23:50 UTC (rev 8485)
@@ -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>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---