{% extends "layouts/base.html" %} {% load i18n admin_urls static %} {% block extrastyle %} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}
{% if action_list %}
{% for action in action_list %} {% endfor %}
{% trans 'User' %} {% trans 'Action' %} {% trans 'Date/time' %}
{{ action.user.get_username }}{% if action.user.get_full_name %} ( {{ action.user.get_full_name }}){% endif %} {{ action.get_change_message }} {{ action.action_time|date:"DATETIME_FORMAT" }}
{% else %}

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

{% endif %}
{% endblock %}