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

    {% trans "Create new tool" %}

    {% endif %} {% if fptools %} {% for fptool in fptools %} {% endfor %}
    {% trans "Description" %} {% trans "Version" %} {% trans "Actions" %}
    {{ fptool.description }} {{ fptool.version }} {% trans "View" %} {% if request.user.is_superuser %} | {% trans "Edit" %} {% endif %}
    {% else %}

    {% trans "No tools exist." %}

    {% endif %}
    {% endblock app_content %}