| 12345678910111213141516171819202122232425262728293031323334353637383940 | {% extends "admin/base_site.html" %}{% load i18n admin_urls %}{% block breadcrumbs %}<div class="breadcrumbs"><a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>› <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{% if opts.app_config.verbose_name %}{{ opts.app_config.verbose_name }}{% else %}{% trans app_label as app_label %}{{ app_label|capfirst|escape }}{% endif %}</a>› <a href="{% url opts|admin_urlname:'changelist' %}">{{ module_name }}</a>› <a href="{% url opts|admin_urlname:'change' object.pk|admin_urlquote %}">{{ object|truncatewords:"18" }}</a>› {% trans 'History' %}</div>{% endblock %}{% block content %}<div id="content-main">{% 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.get_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>{% endblock %}
 |