{% extends "wcs/backoffice/base.html" %} {% load i18n %} {% block appbar-title %}{% trans "Forms" %}{% endblock %} {% block appbar-actions %} {% if has_roles %} {% if is_global_accessible_forms %} {% trans "Data sources" %} {% trans "Fields blocks" %} {% if is_global_accessible_categories %} {% trans "Categories" %} {% endif %} {% endif %} {% trans "Import" %} {% trans "New Form" %} {% endif %} {% endblock %} {% block content %} {% if not has_roles %}

{% trans "You first have to define roles." %}

{% elif objects %} {% for category in categories %} {% if category.objects %}
{% if category.name %}

{{ category.name }}

{% endif %}
{% endif %} {% endfor %} {% else %}
{% block no-objects %} {% trans "There are no forms defined." %} {% endblock %}
{% endif %} {% endblock %}