{% extends 'base.html.twig' %} {% block head %} {{ parent() }} {% endblock %} {% block title %} {{ parent() }} {% endblock %} {% block header %} {{ parent() }} {% endblock %} {% block body %}
{# Partie centrale contenant le titre #}

{# Section activités #}
{{ form_start(filterForm) }}
{{ form_row( filterForm.sport, { attr: { 'type': 'password', 'class': 'form-control', 'id': 'password', 'name': 'password', 'autocomplete': 'password', 'required': true, 'autofocus': false }, label: 'Sports' } ) }}
{{ form_end(filterForm) }}
{% if is_granted('ROLE_ADMIN') %}
{% if app.request.attributes.get('_route') == 'clubArchive' %} Voir les séances actives {% else %} Voir les séances archivées {% endif %}
{% endif %}
{% if banni is defined and banni == true and not is_granted('ROLE_ADMIN') %} {% endif %} {% endblock %} {% block footer %} {{ parent() }} {% endblock %}