You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends '@LcSov/adminlte/layout.html.twig' %}
-
- {% block navbar_header %}
- {{ parent() }}
-
- <nav class="navbar navbar-expand navbar-light main-header">
- <ul class="navbar-nav">
- {% for section in carac_get_sections() %}
- <li class="nav-item d-none d-sm-inline-block">
- <a href="#" class="nav-link">{{ section.title }}</a>
- </li>
- {% endfor %}
- </ul>
- <ul class="navbar-nav ml-auto">
- <li class="nav-item">
- {% set form_switch_merchant = carac_get_form_switch_merchhant() %}
- {{ form_start(form_switch_merchant) }}
- {{ form(form_switch_merchant) }}
- {{ form_end(form_switch_merchant) }}
- </li>
- </ul>
- </nav>
- {% endblock %}
|