{% extends "admin/base_site.html" %} {% load i18n %} {% load url from future %} {% load admin_urls %} {% block breadcrumbs %}
  • {% trans 'Home' %} /
  • {{ app_label|capfirst|escape }} /
  • {{ module_name }} /
  • {{ object|truncatewords:"18" }} /
  • {% trans 'History' %}
  • {% endblock %} {% block content %} {% if action_list %} {% for action in action_list %} {% endfor %}
    {% trans 'Date/time' %} {% trans 'User' %} {% trans 'Action' %}
    {{ action.action_time|date:"DATETIME_FORMAT" }} {{ action.user.username }} {% if action.user.get_full_name %} ({{ action.user.get_full_name }}) {% endif %} {% if action.change_message %} {{ action.change_message }} {% else %} {{ action }} {% endif %}
    {% else %}

    {% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}

    {% endif %} {% endblock %}