{% extends '@ChillMain/CRUD/Admin/index.html.twig' %} {% block admin_content %} {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block index_header %}

{{"Users"|trans}}

{% endblock %} {% block filter_order %}{{ filter_order|chill_render_filter_order_helper }}{% endblock %} {% block table_entities_thead_tr %} {{ 'Active'|trans }} {{ 'absence.Is absent'|trans }} {{ 'Username'|trans }} {{ 'Datas'|trans }} {{ 'Actions'|trans }} {% endblock %} {% block table_entities_tbody %} {% for entity in entities %} {% if entity.isEnabled %} {% else %} {% endif %} {% if entity.isAbsent %} {% else %} {% endif %} {# {% if entity.civility is not null %} {% if entity.civility.name|length > 0 %} {{ entity.civility.name|first }} {% endif %} {% endif %} #} {{ entity.label }} {% endfor %} {% endblock %} {% block pagination %}{{ chill_pagination(paginator) }}{% endblock %} {% block list_actions %} {% endblock list_actions %} {% endembed %} {% endblock %}