{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block content_title %}
{% block tools %}{% endblock %}

{{title|capfirst|force_escape}}: {% trans 'change history'|capfirst|force_escape %}

{% tabs opts %} {% endblock %} {% block content %}
{% if action_list %} {% comment %}Translators: Translation included with Django {% endcomment %} {% comment %}Translators: Translation included with Django {% endcomment %} {% comment %}Translators: Translation included with Django {% endcomment %} {% for action in action_list %} {% endfor %}
{% trans 'Date/time'|capfirst %}{% trans 'user'|capfirst %}{% trans 'action'|capfirst %}
{{ action.action_time|date:"DATETIME_FORMAT" }} {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {{ action.change_message }}
{% else %} {% comment %}Translators: Translation included with Django {% endcomment %}

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

{% endif %}
{% endblock %}