{% extends "::admin.html.twig" %} {% block title %} Liste des confernces {% endblock %} {% block entete %} Liste des confernces {% endblock %} {% block body %}
{{ include('default/flashBag.html.twig') }} {% for conf in confs %} {% endfor %}
Date Titre Lieu Document Action
{{ conf.date | date('d/m/Y') }} {{ conf.title }} {{ conf.lieu }} {% if (conf.file != null) %} Télécharger {% else %} Aucun fichier {%endif %}
{% endblock %}