/django/contrib/admin/templates/admin/object_history.html
https://code.google.com/p/mango-py/ · HTML · 42 lines · 39 code · 3 blank · 0 comment · 0 complexity · d9591bc989de9be5c0bd979c72c9e8fb MD5 · raw file
- {% extends "admin/base_site.html" %}
- {% load i18n %}
- {% block breadcrumbs %}
- <div class="breadcrumbs">
- <a href="../../../../">{% trans 'Home' %}</a> ›
- <a href="../../../">{{ app_label|capfirst }}</a> ›
- <a href="../../">{{ module_name }}</a> ›
- <a href="../">{{ object|truncatewords:"18" }}</a> ›
- {% trans 'History' %}
- </div>
- {% endblock %}
- {% block content %}
- <div id="content-main">
- <div class="module">
- {% if action_list %}
- <table id="change-history">
- <thead>
- <tr>
- <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 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>
- {% endfor %}
- </tbody>
- </table>
- {% else %}
- <p>{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}</p>
- {% endif %}
- </div>
- </div>
- {% endblock %}