{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumb_items %} {% endblock breadcrumb_items %} {% block before_content %}

{% trans 'History' %}: {{ object|truncatewords:"18" }}

{% endblock %} {% block content %} {% if action_list %}
{% for action in action_list %} {% endfor %}
{% trans 'Date/time' %} {% trans 'User' %} {% trans 'Action' %}
{% if has_log_change_permission %} {% endif %} {{ action.action_time|date:"DATETIME_FORMAT" }} {% if has_log_change_permission %} {% endif %} {% if has_user_change_permission %} {% endif %} {{ action.user.get_username }} {% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {% if has_user_change_permission %} {% endif %} {{ action.get_change_message }}
{% else %}
{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}
{% endif %} {% endblock content %}