{% 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 Choix du mois de référence {% for i in 1..12 %} {% if i == mois %} {{app_utils.moisName(i)}} {% else %} {{app_utils.moisName(i)}} {% endif %} {% endfor %} Année Choix de l'année de référence {% for a in annees %} {% if a == annee %} {{a}} {% else %} {{a}} {% endif %} {% endfor %} {{ 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 %}