{% extends "admin/object_history.html" %} {% load i18n %} {% 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 %} {% if not "Aucun champ modifié" in action.revision.get_comment %} {% endif %} {% endfor %}
Date / Heure {% trans 'User' %} {% trans 'Version' %} {% trans 'Action' %} Rétablir
{{action.revision.date_created|date:"DATETIME_FORMAT"}} {% if action.revision.user %} {{action.revision.user.get_username}} {% if action.revision.user.get_full_name %} ({{action.revision.user.get_full_name}}){% endif %} {% else %} — {% endif %} {{action.revision.id}} {{action.revision.get_comment|linebreaksbr|default:""}} Rétablir cette version du projet
{% else %}

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

{% endif %}
{% endblock %}