{% extends "fpr/app_layout.html" %} {% load staticfiles %} {% block title %}Archivematica FPR Server - {{ idtool.description }} {{ idtool.version }}{% endblock title %} {% block page_title %} {{ idtool.description }} Information {% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • Identification Tools
  • {{ idtool.description }}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    UUID
    {{ idtool.uuid }}
    Description
    {{ idtool.description }}
    Version
    {{ idtool.version }}
    Enabled
    {{ idtool.enabled }}
    {% if request.user.is_superuser %}
    Actions
    Edit
    {% endif %}

    Commands

    {% if request.user.is_superuser %}

    Create New Command

    {% endif %} {% if idcommands %} {% for command in idcommands %} {% endfor %}
    Configuration Identifier Command Enabled Actions
    {{ command.get_config_display }} {{ command.description }} {{ command.script|truncatechars:100 }} {{ command.enabled }} View {% if request.user.is_superuser %} | Replace | Disable {% endif %}
    {% else %}

    No commands exist for {{ idtool.description }}.

    {% endif %}
    {% endblock app_content %}