{% extends "fpr/app_layout.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% blocktrans with description=fptool.description version=fptool.version %}Format policy registry tool {{ description }} {{ version }}{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with description=fptool.description version=fptool.version %}Format policy registry tool {{ description }} {{ version }}{% endblocktrans %}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Format policy registry tools" %}
  • {{ fptool.description }} {{ fptool.version }}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% trans "UUID" %}
    {{ fptool.uuid }}
    {% trans "Description" %}
    {{ fptool.description }}
    {% trans "Version" %}
    {{ fptool.version }}
    {% trans "Enabled" %}
    {{ fptool.enabled|yesno:_('Yes,No') }}
    {% if request.user.is_superuser %}
    {% trans "Actions" %}
    {% trans "Edit" %}
    {% endif %}

    {% trans "Tool commands" %}

    {% if request.user.is_superuser %}

    {% trans "Create new tool command" %}

    {% endif %} {% if fpcommands %} {% if request.user.is_superuser %} {% endif %} {% for fpcommand in fpcommands %} {% if request.user.is_superuser %} {% endif %} {% endfor %}
    {% trans "Command" %} {% trans "UUID" %}{% trans "Actions" %}
    {{ fpcommand.description }} {{ fpcommand.uuid }}{% trans "Replace" %}
    {% else %}

    {% blocktrans with description=fptool.description %} No commands exist for {{ description }}. {% endblocktrans %}

    {% endif %}
    {% endblock app_content %}