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

    Create New Command

    {% endif %} {% if idcommands %} {% for idcommand in idcommands %} {% endfor %}
    Command Type Tool Mode Enabled Actions
    {{ idcommand.description }} {{ idcommand.get_script_type_display }} {{ idcommand.tool }} {{ idcommand.config }} {{ idcommand.enabled }} View {% if request.user.is_superuser %} | Replace | {{ idcommand.enabled|yesno:"Disable,Enable" }} {% endif %}
    {% else %}

    No identification commands exist.

    {% endif %}
    {% endblock app_content %}