{% extends 'base.html.twig' %} {% block title %}Liste des évènements{% endblock %} {% block body %}
{% include 'utils/file.ariane.html.twig' %}

Liste des évènements - {{app_utils.moisName(mois)}} {{annee}}


{% if secure.havePermission(constant('_ADD_SERV_GEST_TEAM', app_const)) %}
Nouveau Générer

{% endif %}
Mois

Année




{{ form_start(form) }}
{{ form_label(form.searchValue) }} {{ form_widget(form.searchValue) }}
{{ form_end(form) }}

Nom
Date
Activer
{% if result.elements|length <= 0 %}
Aucun évènement trouvé
{% else %} {% for obj in result.elements %}
{{obj.nom}}
{{obj.date| date("d/m/Y H:i")}}
{% if obj.visibility %} {% else %} {% endif %}
{% if secure.havePermission(constant('_UPDATE_SERV_GEST_TEAM', app_const)) %} {% endif %} {% if secure.havePermission(constant('_REMOVE_SERV_GEST_TEAM', app_const)) %} {% endif %}
{% endfor %} {% endif %}

{% include 'utils/pagination.html.twig' with {'url': '/evenement/liste/' ~ annee ~ '/' ~ mois} %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}