{% extends "combo/manager_base.html" %} {% load i18n %} {% load cells %} {% load thumbnail %} {% block appbar %}

{% trans 'Page History' %} - {{ page.title }}

{% endblock %} {% block breadcrumb %} {{ block.super }} {% trans 'Page' %} - {{page.title }} {% trans "History" %} {% endblock %} {% block content %}
{% if object_list|length > 1 %}

{% endif %} {% for snapshot in object_list %} {% endfor %}
{% trans 'Identifier' %} {% trans 'Compare' %} {% trans 'Date' %} {% trans 'Description' %} {% trans 'User' %} {% trans 'Actions' %}
#{{ snapshot.pk }} {% if object_list|length > 1 %} {% if not forloop.last %}{% else %}      {% endif %} {% if not forloop.first %}{% else %}      {% endif %} {% endif %} {{ snapshot.timestamp }} {% if snapshot.new_day and snapshot.day_other_count %} — {% if snapshot.day_other_count >= 50 %}{% endif %} {% blocktrans trimmed count counter=snapshot.day_other_count %} 1 other this day {% plural %} {{ counter }} others {% endblocktrans %} {% endif %} {% if snapshot.label %} {{ snapshot.label }} {% elif snapshot.comment %} {{ snapshot.comment }} {% endif %} {% if snapshot.application_version %}({% blocktrans with version=snapshot.application_version %}Version {{ version }}{% endblocktrans %}){% endif %} {% if snapshot.user %} {{ snapshot.user.get_full_name }}{% endif %} {% trans "view" %}{% trans "export" %}{% trans "restore" %}
{% endblock %}