{% extends '@LcSov/adminlte/layout.html.twig' %}
{% block navbar_header %}
{{ parent() }}
{% set section_current = section_current() %}
{% set is_display_switch_section = display_switch_section is defined and display_switch_section %}
{% endblock %}
{% block reminders %}
{% if params_reminders_null != params_reminders %}
{% set reminders = sov_reminders(params_reminders) %}
{% include '@LcSov/admin/reminder/block.html.twig' %}
{% endif %}
{% endblock %}
{% block append_body %}
{# modal switch merchant #}
{% set user = app.user %}
{% set merchant_current = merchant_current() %}
{% if(user.favoriteMerchant != merchant_current) %}
{# modal affichée uniquement si la sessionStorage.visit_merchant n'est pas défini (js) #}
{% include '@LcCaracole/admin/merchant/modal/switch_merchant.html.twig' %}
{% endif %}
{% endblock %}
{% macro form_switch_section(section) %}
{% set form_switch_section = carac_form_switch_section(section) %}
{% form_theme form_switch_section '@LcSov/adminlte/crud/form_theme.html.twig' %}
{{ form_start(form_switch_section) }}
{{ form(form_switch_section) }}
{{ form_end(form_switch_section) }}
{% endmacro %}