{% extends "admin/base_site.html" %} {% load i18n admin_urls static dashub %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans 'History' %}

{% for action in action_list reversed %}
{{ action.action_time|date:"DATETIME_FORMAT" }}
{% action_message_to_list action as action_message_list %} {% for action_message in action_message_list %} {% endfor %} {% endfor %}
{% if not action_list %}

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

{% endif %}
{% endblock %}