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

    Create New Rule

    {% endif %} {% if idrules %} {% for idrule in idrules %} {% endfor %}
    Format Command Output Tools Actions
    {{ idrule.format }} {{ idrule.command.description }} {{ idrule.command_output }} {% for tool in idrule.command.tool.all %} {{ tool }}
    {% endfor %}
    View {% if request.user.is_superuser %} | Replace | Disable {% endif %}
    {% else %}

    No identification rules exist.

    {% endif %}
    {% endblock app_content %}