{% set options = { 'teams': teams, 'team': team|default(null), 'route_create': route_create|default(null), 'route_edit': route_edit|default(null), 'empty_message': empty_message|default('team.visibility_global') } %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' with options %} {% import "macros/widgets.html.twig" as widgets %} {% block box_tools %} {% if teams|length == 0 and team is null and route_create is not null and is_granted('create_team') %} {% endif %} {% if route_edit is not null %} {% endif %} {% endblock %} {% block box_attributes %}id="team_listing_box"{% endblock %} {% block box_title %} {{ 'permissions'|trans({}, 'actions') }} {% endblock %} {% block box_body %} {% if teams|length > 0 %}

{{ 'team.visibility_restricted'|trans({}, 'teams') }}

{{ widgets.team_list(teams) }} {% else %}

{{ empty_message|default('team.visibility_global')|trans({}, 'teams') }}

{% endif %} {% endblock %} {% endembed %}