{% extends "admin/base_site.html" %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if action_list %} {% for action in action_list %} {% endfor %}
{{ _('Date/time') }} {{ _('User') }} {{ _('Action') }}
{{ action.action_time|date }} {{ action.user.username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {{ action.change_message }}
{% else %}

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

{% endif %}
{% endblock %}