{% extends "fpr/app_layout.html" %} {% load i18n %} {% load revisions_link %} {% block title %}{{ block.super }} - {% blocktrans with description=format.description %}Format version {{ description }}{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with format=format %}Format version {{ format }}{% endblocktrans %}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Formats" %}
  • {{ format.description }}
  • {{ version.description }}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% revisions_link "formatversion" version.uuid %}
    {% trans "UUID" %}
    {{ version.uuid }}
    {% trans "Description" %}
    {{ version.description }}
    {% trans "Version" %}
    {{ version.version }}
    {% trans "Pronom" %} ID
    {{ version.pronom_id }}
    {% trans "Format" %}
    {{ format.description }}
    {% trans "Access?" %}
    {{ version.access_format|yesno:_('Yes,No') }}
    {% trans "Preservation" %}?
    {{ version.preservation_format|yesno:_('Yes,No') }}
    {% trans "Enabled" %}
    {{ version.enabled|yesno:_('Yes,No') }}
    {% if request.user.is_superuser %}
    {% trans "Actions" %}
    {% trans "Replace" %}
    {% endif %}
    {% endblock app_content %}