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

{% trans 'History' %}

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

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

{% endif %}
{% endblock %}