{% extends "fpr/app_layout.html" %} {% load staticfiles %} {% block title %}Archivematica FPR Server - Formats{% endblock title %} {% block page_title %} Format Information {% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • Formats
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% if request.user.is_superuser %} {% include '_fpr_update_button.html' %} {% endif %} {% if request.user.is_superuser %}

    Create New Format

    {% endif %} {% if formats %} {% for format in formats %} {% endfor %}
    Description Group Actions
    {{ format.description }} {% if request.user.is_superuser %} {{ format.group }} {% else %} {{ format.group }} {% endif %} View {% if request.user.is_superuser %} | Edit {% endif %}
    {% else %}

    No formats exist.

    {% endif %}
    {% endblock app_content %}