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

    {% trans "Create new tool" %}

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

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

    {% endif %}
    {% endblock app_content %}