{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Manage users' | trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': users.getTotalItemCount}) }}

{% if users.getTotalItemCount > 0 %}
{% include "Dashboard/Administrator/User/manage-users-table.html.twig" with {users: users} %}
{{ knp_pagination_render(users, null, {}, {'align': 'center'}) }}
{% else %} {% include "Global/message.html.twig" with { type: "info", message: ('No users found'|trans), icon: "fas fa-exclamation-circle" } %} {% endif %}
{% endblock %} {% block javascripts %} {% endblock %}