Ticket #1585: object_history.diff
File object_history.diff, 1.0 KB (added by , 19 years ago) |
---|
-
object_history.html
15 15 <table id="change-history"> 16 16 <thead> 17 17 <tr> 18 <th >{% trans 'Date/time' %}</th>19 <th >{% trans 'User' %}</th>20 <th >{% trans 'Action' %}</th>18 <th scope="col">{% trans 'Date/time' %}</th> 19 <th scope="col">{% trans 'User' %}</th> 20 <th scope="col">{% trans 'Action' %}</th> 21 21 </tr> 22 22 </thead> 23 23 <tbody> 24 24 {% for action in action_list %} 25 25 <tr> 26 <th >{{ action.action_time|date:_("DATE_WITH_TIME_FULL") }}</th>26 <th scope="row">{{ action.action_time|date:_("DATE_WITH_TIME_FULL") }}</th> 27 27 <td>{{ action.user.username }}{% if action.user.first_name %} ({{ action.user.first_name }} {{ action.user.last_name }}){% endif %}</td> 28 28 <td>{{ action.change_message}}</td> 29 29 </tr>