{% extends 'base.html.twig' %} {% block body %}
Sections Ajouter
{% if sections|length == 0 %}

Aucune valeur

{% else %}
{% include "./layouts/message_flash.html.twig" %}
{% for section in sections %} {% endfor %}
Ordre Nom Sous-sections RĂ´les Actions
{{ section.ordre ?? 'N/A' }}
{{ section.nom }}
{% if section.sousSections|length > 0 %}
{% for sous_section in section.sousSections %} {{ sous_section.nom }} {% endfor %}
{% else %} Aucune {% endif %}
{% if section.roles|length > 0 %}
{% for role in section.roles %} {{ role.nom }} {% endfor %}
{% else %} Aucun {% endif %}
{% endif %}
{% include "admin/sections/create.html.twig" %} {% include "admin/sections/edit.html.twig" %} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('sections_index') }} {% endblock %}