{% extends "fpr/app_layout.html" %} {% load i18n %} {% load revisions_link %} {% block title %}{{ block.super }} - {% blocktrans with uuid=idrule.uuid %}Identification rule {{ uuid }}{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with uuid=idrule.uuid %}Identification rule {{ uuid }}{% endblocktrans %}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Identification rules" %}
  • {% blocktrans with uuid=idrule.uuid %}Identification rule {{ uuid }}{% endblocktrans %}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% revisions_link "idrule" idrule.uuid %}
    {% trans "UUID" %}
    {{ idrule.uuid }}
    {% trans "Format version" %}
    {{ idrule.format.description }}
    {% trans "Command" %}
    {{ idrule.command.description }}
    {% trans "Command output" %}
    {{ idrule.command_output }}
    {% trans "Enabled" %}
    {{ idrule.enabled|yesno:_("Yes,No") }}
    {% if request.user.is_superuser %}
    {% trans "Actions" %}
    {% trans "Replace" %}
    {{ idrule.enabled|yesno:_("Disable,Enable") }}
    {% endif %}
    {% endblock app_content %}