{% extends "fpr/app_layout.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% trans "Revisions" %}{% endblock title %} {% block page_title %}{% blocktrans with revision_type=revision_type %}{{ revision_type }} revision history{% endblocktrans %}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Revisions" %}
  • {% trans "List" %}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% if revision %} {% for descendant in descendants %} {% endfor %} {% for ancestor in ancestors %} {% endfor %}
    {% trans "UUID" %} {% trans "Last modified" %}
    {{ descendant.uuid }} {{ descendant.lastmodified }}
    » {{ revision.uuid }} {{ revision.lastmodified }}
    {{ ancestor.uuid }} {{ ancestor.lastmodified }}
    {% else %}

    {% trans "No revisions exist." %}

    {% endif %}
    {% endblock app_content %}