{% extends '@DWGinger/crud/list.html.twig' %} {% block heading %}{% endblock %} {% block list_actions %} {% if is_granted('ROLE_GINGER_GROUP_CREATE') %} {{ 'title.group_new'|trans }} {% endif %} {% endblock %} {% block table_header %} # {{ 'label.title'|trans }} {{ 'label.tags'|trans }} {{ 'label.created_at'|trans }} {% endblock %} {% block table_body %} {% for group in pagination %} {{ group.id }} {% if is_granted('ROLE_GINGER_GROUP_EDIT') and is_granted('edit', group) %} {{ group.title }} {% else %} {{ group.title }} {% endif%} {{ group.tags|join(', ') }} {{ group.createdAt|date("d.m.Y") }} {% endfor %} {% endblock %}