{% extends "fpr/app_layout.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% trans "Identification rules" %}{% endblock title %} {% block page_title %}{% trans "Identification rules" %}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Identification rules" %}
  • {% trans "List" %}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% if request.user.is_superuser %}

    {% trans "Create new rule" %}

    {% endif %} {% if idrules %} {% for idrule in idrules %} {% endfor %}
    {% trans "Format" %} {% trans "Command" %} {% trans "Output" %} {% trans "Tools" %} {% trans "Enabled" %} {% trans "Actions" %}
    {{ idrule.format }} {{ idrule.command.description }} {{ idrule.command_output }} {{ idrule.command.tool }} {{ idrule.enabled|yesno:_('Yes,No') }} {% trans "View" %} {% if request.user.is_superuser %} | {% trans "Replace" %} | {{ idrule.enabled|yesno:_("Disable,Enable") }} {% endif %}
    {% else %}

    {% trans "No identification rules exist." %}

    {% endif %}
    {% endblock app_content %}