{% extends 'base.html.twig' %} {% block body %} {% block body_head %}

Tableau de bord

{% endblock %}

Gestion des evenement du mois de {{ mois.dateTime|format_datetime(locale: 'fr',pattern:"MMMM")}} {{ annee_gestion }}

{% if agenda is not empty %} {% for ev in events %} {% endfor %}
Date Type Lieu Enregistrement
{{ ev.evenDate|date("d/m/Y") }} {{ ev.type.typelib }} {{ ev.lieu.lieulib }} {{ ev.enregistrement }}
Ajouter Préremplir
{% if agenda.etat == "V" %} Agenda publié {% else %} Agenda non visible {% endif %}
Note : {{ agenda.getNote }}
Décoration
Type : {{ agenda.decoration }}
Texte : {{ agenda.decorationTexte }}
Modifier Validation
{% else %}

Il n'y a pas d'agenda pour ce mois.

Créer un agenda du mois {% endif %}

Gestion des types et lieux

Liste de type
{% for ty in types %} {% endfor %}
Id Type
{{ ty.id }} {{ ty.typelib }}
Ajouter
Liste de lieux
{% for li in lieux %} {% endfor %}
Id Lieu Adresse
{{ li.id }} {{ li.lieulib }} {{ li.adresse }}
Ajouter
{% endblock %}