{% extends 'layout/base.html.twig' %} {% set i18n_prefix = _self|i18n_prefix %} {% block body %} {% include 'components/layout/_title_3.html.twig' with { name: (i18n_prefix ~ '.title')|trans } %}
{% include 'components/layout/_searchbar.html.twig' with { margin: 'my-3 my-lg-0 me-lg-3' } %}
{% if pagination is empty %}

{{ (i18n_prefix ~ '.no_result')|trans }}

{% else %} {% for member in pagination %} {% include 'components/group/_member_card.html.twig' with { user: member.user, category: member.user.category, isInvited: member.membership.isInvited, group, } %} {% endfor %} {% include 'components/layout/_pagination.html.twig' with {pagination} %} {% if is_granted('IS_AUTHENTICATED') and app.user.isGroupAdmin(group) %}
{{ (i18n_prefix ~ '.manage_button')|trans }}
{% endif %} {% endif %}
{% endblock %} {% block link %}{% endblock %}