{% extends "fpr/app_layout.html" %} {% load i18n %} {% load revisions_link %} {% block title %}{{ block.super }} - {% blocktrans with description=idcommand.description %}Identification command {{ description }}{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with description=idcommand.description %}Identification command {{ description }}{% endblocktrans %}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Identification commands" %}
  • {{ idcommand.description }}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% revisions_link "idcommand" idcommand.uuid %}
    {% trans "UUID" %}
    {{ idcommand.uuid }}
    {% trans "Tool" %}
    {{ idcommand.tool }}
    {% trans "Description" %}
    {{ idcommand.description }}
    {% trans "Mode" %}
    {{ idcommand.config }}
    {% trans "Script" %}
    {{ idcommand.script }}
    {% trans "Script type" %}
    {{ idcommand.get_script_type_display }}
    {% trans "Enabled" %}
    {{ idcommand.enabled|yesno:_('Yes,No') }}
    {% if request.user.is_superuser %}
    {% trans "Actions" %}
    {% trans "Replace" %}
    {{ idcommand.enabled|yesno:_("Disable,Enable") }}
    {% endif %}
    {% endblock app_content %}