{% extends base_template %} {% load i18n %} {% load url from future %} {% load xadmin_tags %} {% block breadcrumbs %} {% endblock %} {% block nav_title %} {{title}} {% endblock %} {% block content %}
{% if action_list %}
{% csrf_token %} {% for action in action_list %} {% endfor %}
{% trans 'Diff' %} {% trans 'Date/time' %} {% trans 'User' %} {% trans 'Comment' %}
{{action.revision.date_created}} {% if action.revision.user %} {{action.revision.user.username}} {% if action.revision.user.first_name %} ({{action.revision.user.first_name}} {{action.revision.user.last_name}}){% endif %} {% endif %} {{action.revision.comment|linebreaksbr|default:""}}
{% else %}

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

{% endif %}
{% endblock %}