{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block content_title %}
{% block tools %}{% endblock %}

{{title|capfirst|escape}}: {% trans 'Change history'|escape %}

{% tabs model %}
{% endblock %} {% block content %}
{% if action_list %} {% for action in action_list %} {% endfor %}
{% trans 'Date/time' %} {% trans 'User' %} {% trans 'Action Type' %} {% 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.action_flag = 1 %}{% trans 'Create' %}{% elif action.action_flag = 2 %}{% trans 'Change' %}{% elif action.action_flag = 3 %}{% trans 'Delete' %}{% endif %} {{action.change_message}}
{% else %}

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

{% endif %}
{% endblock %}