{% extends 'app/base.html.twig' %} {% block title %}Configuration{% endblock %} {% set section_labels = { 'generales': {'label': 'Informations générales', 'icon': 'fas fa-school'}, 'stocks': {'label': 'Stocks', 'icon': 'fas fa-boxes'} } %} {% block body %}

Configuration

{# ── Onglets navigation configuration ───────────────────────────────────── #} {% for message in app.flashes('success') %} {% endfor %} {% if sections is empty %}

Aucune configuration enregistrée.

{% else %}
{% for section, lignes in sections %} {% set meta = section_labels[section] ?? {'label': section|capitalize, 'icon': 'fas fa-folder-open'} %}
{{ meta.label }}
{% for ligne in lignes %}
{% if ligne.type_donnee == 'number' and 'tarif' in ligne.cle %} {% elseif ligne.type_donnee == 'number' and 'taux' in ligne.cle %} % {% elseif ligne.type_donnee == 'number' %} {% else %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% endblock body %}