Fixed #12564 - Use locale-aware date format in admin object history overview

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12280 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2010-01-23 17:07:38 +00:00
parent 4d81874f9d
commit 3df1a16c79
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
<tbody>
{% for action in action_list %}
<tr>
<th scope="row">{{ action.action_time|date }}</th>
<th scope="row">{{ action.action_time|date:"DATETIME_FORMAT" }}</th>
<td>{{ action.user.username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}</td>
<td>{{ action.change_message }}</td>
</tr>