{% extends "base.html" %} {% load navigation_tags %} {% load authorization_tags %} {% load i18n %} {% block content %} {{ block.super }}

{% trans "Tool Types" %} {% if "dojo.add_tool_type"|has_configuration_permission:"superuser" %} {% endif %}

{% if confs %}
{% include "dojo/paging_snippet.html" with page=confs page_size=True %}
{% for conf in confs %} {% endfor %}
Name Description
{% if "dojo.change_tool_type"|has_configuration_permission:"superuser" %} {{ conf.name }} {% else %} {{ conf.name }} {% endif %} {% if conf.description %}{{ conf.description }}{% endif %}
{% include "dojo/paging_snippet.html" with page=confs page_size=True %}
{% else %}

{% trans "No tool types found" %}

{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}