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
This commit is contained in:
Russell Keith-Magee 2008-08-23 14:23:50 +00:00
parent a9ee1d4e28
commit 358ba07166
1 changed files with 1 additions and 1 deletions

View File

@ -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>