Commit 3df1a16c authored by Jannis Leidel's avatar Jannis Leidel
Browse files

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
parent 4d81874f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>