Kaydet (Commit) 358ba071 authored tarafından Russell Keith-Magee's avatar Russell Keith-Magee

Fixed #7946: Modified object history template to use a common date format.…

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
üst a9ee1d4e
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment