{% set page_title = _("Banned Users") %} {% set active = "management.users" %} {% extends theme("management/management_layout.html") %} {%- from theme("_macros/pagination.html") import render_pagination %} {%- from theme("_macros/navigation.html") import navlink with context %} {%- from theme("_macros/form.html") import render_input_field %} {% block breadcrumb %} {% endblock %} {% block management_content %}
{% trans %}Banned Users{% endtrans %}
{% trans %}Username{% endtrans %}
{% trans %}Posts{% endtrans %}
{% trans %}Group{% endtrans %}
{% if current_user|can_ban_user %}
{% endif %}
{% for user in users.items %}
{{ user.post_count }}
{{ user.primary_group.name }}
{% if current_user|can_ban_user and user.permissions['banned'] %}
{% endif %}
{% else %}
{% trans %}No users found matching your search criteria.{% endtrans %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}