{% extends "fpr/app_layout.html" %} {% load staticfiles %} {% load revisions_link %} {% block title %}Archivematica FPR Server - {{ fpcommand.description }}{% endblock title %} {% block page_title %} {{ fpcommand.description }} Information {% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • Format Policy Commands
  • {{ fpcommand.description }} Command
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% revisions_link "fpcommand" fpcommand.uuid %}
    UUID
    {{ fpcommand.uuid }} Rule
    Description
    {{ fpcommand.description }}
    Tool
    {{ fpcommand.tool.description }}
    Command
    {{ fpcommand.command }}
    Script Type
    {{ fpcommand.get_script_type_display }}
    Output File Format
    {{ fpcommand.output_format.description|default:"None" }}
    Output Location
    {{ fpcommand.output_location|default:"None" }}
    Command usage
    {{ fpcommand.get_command_usage_display }}
    Verification Command
    {% if fpcommand.verification_command %}
    {{ fpcommand.verification_command.description }}
    {% else %}
    {{ fpcommand.verification_command }}
    {% endif %}
    Event Detail Command
    {% if fpcommand.event_detail_command %}
    {{ fpcommand.event_detail_command.description }}
    {% else %}
    {{ fpcommand.event_detail_command }}
    {% endif %}
    Enabled
    {{ fpcommand.enabled }}
    {% if request.user.is_superuser %}
    Actions
    Replace
    {{ fpcommand.enabled|yesno:"Disable,Enable" }}
    {% endif %}
    {% endblock app_content %}