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

    {% trans "Create new command" %}

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

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

    {% endif %}
    {% endblock app_content %}