{% extends "fpr/app_layout.html" %} {% 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 Enabled Actions
    {{ fpcommand.description }} {{ fpcommand.get_command_usage_display }} {{ fpcommand.tool.description }} {{ fpcommand.enabled }} View {% if request.user.is_superuser %} | Replace | {{ fpcommand.enabled|yesno:"Disable,Enable" }} {% endif %}
    {% else %}

    No format policy commands exist.

    {% endif %}
    {% endblock app_content %}