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

{{ _("History") }}: {{ object|truncatewords:"18" }}

{% endblock %} {% block content %} {% if action_list %} {% for action in action_list %} {% endfor %}
{{ _("Date/time") }} {{ _("User") }} {{ _("Action") }}
{% if show_log_link %} {{ action.action_time|date:"DATETIME_FORMAT" }} {% else %} {{ action.action_time|date:"DATETIME_FORMAT" }} {% endif %} {% if show_user_link %} {{ 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 }}
{% else %}

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

{% endif %} {% endblock content %}