{% extends '@admin/base.html.twig' %} {% block subheader %}

PARAMÈTRES MÉTIER

{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block bodycontent %}
{% for type, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}
{% include 'admin/settings/_settings_menu.html.twig' %}
{% for group in section_groups %} {% for section in group.sections %}

{{ group.title }}

{{ group.description }}

{{ section.title }}
{% if section.external %} {{ section.external_label }} {% else %} {% endif %}
{% if not section.external %}
{% if section.items is empty %}
Aucune donnée pour cette section.
{% else %}
{% for header in section.headers %} {% endfor %} {% for item in section.items %} {% for cell in item.cells %} {% endfor %} {% endfor %}
{{ header }}Actions
{% if cell.type == 'badge' %} {{ cell.label }} {% elseif cell.type == 'color' %} {{ cell.label }} {% elseif cell.type == 'icon' %} {% if cell.value %}{{ cell.value }}{% else %}-{% endif %} {% else %} {{ cell.value is same as(null) or cell.value is same as('') ? '-' : cell.value }} {% endif %}
{% for item in section.items %} {% include 'admin/settings/_config_modal.html.twig' with { section: section, modal_id: 'modal-' ~ section.key ~ '-' ~ loop.index, values: item.values, identifier: item.identifier, mode: 'edit' } %} {% endfor %} {% endif %}
{% include 'admin/settings/_config_modal.html.twig' with { section: section, modal_id: 'modal-' ~ section.key ~ '-new', values: {}, identifier: '', mode: 'new' } %} {% endif %}
{% endfor %} {% endfor %}
{% endblock %}