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

{% translate 'Change History' %}

{{ object|to_object_display_value|truncatewords:"10" }}

{% if action_list %} {% for action in action_list %} {% endfor %}
{% translate 'Date/time' %} {% translate 'User' %} {% translate 'Action' %}
{{ action.action_time|date:"DATETIME_FORMAT" }}
{{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}
{{ action.get_change_message }}
{{ action_list.paginator.count }} {% blocktranslate count counter=action_list.paginator.count %}entry{% plural %}entries{% endblocktranslate %}
{% if pagination_required %} {% endif %}
{% else %}

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

{% endif %}
{% endblock %}