{% extends 'base.html.twig' %} {% block title %}Formulaires de la commission {{ department.name }}{% endblock %} {% block body %}

Formulaires de la commission {{ department.name }}

{% if department.customForms is not empty %}
{% for form in department.customForms %} {% if form.published %} {{ include('custom_form/blocks/form-excerpt.html.twig', { 'form': form }) }} {% endif %} {% endfor %}
{% else %}

Aucun formulaire disponible pour cette commission.

{% endif %}
{% endblock %}