{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if action_list %} {% for action in action_list %} {% endfor %}
{% trans 'Revision' %} {% trans 'Date/time' %} {% trans 'User' %} {% trans 'Action' %}
{{action.revision}} {{ action.action_time|date:_("DATETIME_FORMAT") }} {% if action.user %}{{ action.user.username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}{% else %}{{ action.user_name }}{% endif %} {{ action.info }}
{% else %}

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

{% endif %}
{% endblock %}