{% extends '@ChillMain/CRUD/Admin/index.html.twig' %} {% block admin_content %} {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block table_entities %}
{% for entity in entities %}
{{ entity|chill_entity_render_box }}
{%- if not entity.active -%}
{{ 'user_group.inactive'|trans }}
  {%- endif -%}
{{ 'user_group.with_count_users'|trans({'count': entity.users|length}) }}
{{ 'user_group.with_users'|trans }}
{% for user in entity.userListByLabelAscending %}

{{ user|chill_entity_render_box }}

{% else %}

{{ 'user_group.no_users'|trans }}

{% endfor %}
{{ 'user_group.adminUsers'|trans }}
{% for user in entity.adminUserListByLabelAscending %}

{{ user|chill_entity_render_box }}

{% else %}

{{ 'user_group.no_admin_users'|trans }}

{% endfor %}
{% endfor %}
{% endblock %} {% block actions_before %}
  • {{'Back to the admin'|trans }}
  • {% endblock %} {% endembed %} {% endblock %}