{% extends 'layout.html' %} {% from '_helpers.html' import render_user %} {% set page_title = _('All Users') if not locale else (_('Users active in Section “%s”') % locale.display_name|e) %} {% block body %} {% if not locale %}

{{ page_title }}

{% trans %}

Here you can see a complete list of all users on Solace. {% endtrans %} {% else %} {% set locale_link='%s' % ( url_for('kb.overview', lang_code=locale), locale.display_name|e) %}

{{ _('Users active in Section “%s”') % locale_link }}

{% trans %}

Here you can see the list of all users that are active in the “{{ locale_link }}” section of the Solace. {% endtrans %} {% endif %} {% if settings.LANGUAGE_SECTIONS|length > 1 %}

{{ _('Filter by section') }}: {{ _('All') }} {% for key, locale in sections %} | {{ locale.display_name|e }} {% endfor %} {% endif %}

{{ pagination }} {% endblock %}