{% extends "fpr/app_layout.html" %} {% load url from future %} {% load staticfiles %} {% block title %}Archivematica FPR Server - Format Policy Commands{% endblock title %} {% block page_title %} Format Policy Command Information {% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • Format Policy Commands
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% if request.user.is_superuser %}

    Create New Command

    {% endif %} {% if fpcommands %} {% for fpcommand in fpcommands %} {% endfor %}
    Description Usage Tool Actions
    {{ fpcommand.description }} {{ fpcommand.get_command_usage_display }} {{ fpcommand.tool.description }} View {% if request.user.is_superuser %} | Replace {% endif %}
    {% else %}

    No format policy commands exist.

    {% endif %}
    {% endblock app_content %}