1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

magic-removal: Fixed #1585 -- Added small semantic stuff to admin object_history template. Thanks, ubernostrom

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2657 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-04-11 02:38:03 +00:00
parent 16ddb21841
commit 180efa66ea

View File

@ -15,15 +15,15 @@
<table id="change-history">
<thead>
<tr>
<th>{% trans 'Date/time' %}</th>
<th>{% trans 'User' %}</th>
<th>{% trans 'Action' %}</th>
<th scope="col">{% trans 'Date/time' %}</th>
<th scope="col">{% trans 'User' %}</th>
<th scope="col">{% trans 'Action' %}</th>
</tr>
</thead>
<tbody>
{% for action in action_list %}
<tr>
<th>{{ action.action_time|date:_("DATE_WITH_TIME_FULL") }}</th>
<th scope="row">{{ action.action_time|date:_("DATE_WITH_TIME_FULL") }}</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>