{% extends "index.twig" %} {% block title %}Users{% endblock %} {% block content %}

Users

{{ block("messages_queue", "message_queue.twig") }} {% if user('access.user.create', false) %} Create {% endif %} {% if list %} {% for item in list %} {% endfor %}
Action Name Email Groups State ID
{% if user('access.user.update', false) %} Edit {% else %} Read {% endif %} {% if user('access.user.delete', false) %} {% endif %}
{{ item.name|escape('html') }}
username: {{ item.username|escape('html') }}
{{ item.email|escape('html') }} {% if item.groups %}
    {% for group in item.groups %}
  • {{ group.title|escape('html') }}
  • {% endfor %}
{% else %} None set {% endif %}
{% if item.block == 0 %} {% else %} {% endif %} {{ item.id }}
{% else %}
{% if user('access.user.create', false) %}

There has no users been found, click create to add some. (this should never happen!!!)

{% else %}

There has no users been found. (this should never happen!!!)

{% endif %}
{% endif %}
{% if user('access.user.delete', false) %} {% endif %} {% endblock %}