{% extends 'admin/object_history.html' %} {% load i18n admin_urls %} {% block content %}
{% if action_list %} {% for action in action_list reversed %} {% endfor %}
{% translate 'Date/time' %} {% translate 'User' %} {% translate 'action'|capfirst %}
{% if perms.admin.view_logentry %} {{ action.action_time|date:"DATETIME_FORMAT" }} {% else %} {{ action.action_time|date:"DATETIME_FORMAT" }} {% endif %} {% if perms.auth.change_user %} {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {% else %} {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {% endif %} {{ action.get_change_message }}

{% if pagination_required %} {% for i in page_range %} {% if i == action_list.paginator.ELLIPSIS %} {{ action_list.paginator.ELLIPSIS }} {% elif i == action_list.number %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% endif %} {{ action_list.paginator.count }} {% blocktranslate count counter=action_list.paginator.count %}entry{% plural %}entries{% endblocktranslate %}

{% else %}

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

{% endif %}
{% endblock %}