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.

23 lines
814B

  1. {% extends '@LcSov/adminlte/layout.html.twig' %}
  2. {% block navbar_header %}
  3. {{ parent() }}
  4. <nav class="navbar navbar-expand navbar-light main-header">
  5. <ul class="navbar-nav">
  6. {% for section in carac_get_sections() %}
  7. <li class="nav-item d-none d-sm-inline-block">
  8. <a href="#" class="nav-link">{{ section.title }}</a>
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. <ul class="navbar-nav ml-auto">
  13. <li class="nav-item">
  14. {% set form_switch_merchant = carac_get_form_switch_merchhant() %}
  15. {{ form_start(form_switch_merchant) }}
  16. {{ form(form_switch_merchant) }}
  17. {{ form_end(form_switch_merchant) }}
  18. </li>
  19. </ul>
  20. </nav>
  21. {% endblock %}