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

{% if object %}{{ object|truncatewords:"10" }}{% else %}{{ object_id }}{% endif %} {% translate 'History' %}

{% translate 'Overview of modifications and updates tracked on this object.' %}

{% if action_list %} {% for action in action_list %} {% endfor %}
{% translate 'Date/time' %} {% translate 'User' %} {% translate 'Action' %}
{{ action.action_time }} {{ action.user.get_username }} {{ action.change_message }}
{% else %}

{% trans "This object doesn't have a change history." %}

{% endif %}
{% endblock %}