{% extends 'administration/_layout.html.twig' %} {% block title %}Thèmes d'activités{% endblock %} {% block page_title %}Thèmes d'activités{% endblock %} {% block body %}

Nouveau thème

Thèmes

{% if themes is empty %}
Aucun thème d'activité. Les éducateurs ne pourront pas saisir d'activité tant qu'au moins un thème actif n'existe pas.
{% endif %}
{% for theme in themes %}
{{ theme.libelle }} {% if theme.actif %} Actif {% else %} Désactivé {% endif %} {% if theme.dateDebut or theme.dateFin %}
{% if theme.dateDebut and theme.dateFin %} du {{ theme.dateDebut|date('d/m/Y') }} au {{ theme.dateFin|date('d/m/Y') }} {% elseif theme.dateDebut %} à partir du {{ theme.dateDebut|date('d/m/Y') }} {% else %} jusqu'au {{ theme.dateFin|date('d/m/Y') }} {% endif %}
{% endif %} {% if theme.description %}
{{ theme.description }}
{% endif %} {% if theme.objectifPedagogique %}
Objectif : {{ theme.objectifPedagogique }}
{% endif %}
{% if theme.actif %}
{% else %}
{% endif %}
{% endfor %}
{% if total > themes|length %}
{% endif %}
{% endblock %} {% block javascripts_bottom %} {{ parent() }} {% endblock %}