{% extends "admin/object_history.html" %} {% load i18n %} {% load url from future %} {% block content %}

{% blocktrans %}Choose a date from the list below to revert to a previous version of this object.{% endblocktrans %}

{% if action_list %} {% for action in action_list %} {% endfor %}
{% trans 'Date/time' %} {% trans 'User' %} {% trans 'Status' %} {% trans 'Comment' %}
{{action.revision.date_created|date:_("DATETIME_FORMAT")}} {% if action.revision.user %} {% if action.revision.user.first_name %} {{ action.revision.user.first_name }} {{ action.revision.user.last_name }} {% else %} {{ action.revision.user.username }} {% endif %} {% endif %} {{action.headline}} {{action.revision.comment|default:""}}
{% else %}

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

{% endif %}
{% endblock %}