{% 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 'Object' %} {% trans 'Date/time' %} {% trans 'Comment' %} {% trans 'Changed by' %}
{{ action.history_object }} {{ action.history_date }} {{ action.get_history_type_display }} {{ action.history_user }}
{% else %}

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

{% endif %}
{% endblock %}