templates/default/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block logo_large %}
  3.         LOCCA CASHMAG
  4. {% endblock %}
  5. {% block title %}
  6.         LOCCA CASHMAG
  7. {% endblock %}
  8. {% block page_title %}
  9.         TABLEAU DE BORD
  10. {% endblock %}
  11. {% block page_subtitle %}
  12.         Application rapatriement Base de donnĂ©e  
  13.         </br>
  14.         {% if is_granted('IS_AUTHENTICATED_FULLY') %}
  15.         <p>Email Utilisateur: {{ app.user.email }}</p>
  16.         {% endif %}
  17. {% endblock %}
  18. {% block sidebar_nav %}
  19.         {% include 'navbar.html.twig' %}
  20. {% endblock %}
  21. {% block page_content %}
  22.         {% include 'flash-message.html.twig' %}
  23. {% if is_granted('ROLE_ADMIN') %}
  24.   <a class="btn btn-block btn-primary" href="{{ path('point_de_vente') }}">Import Points de Vente</a>
  25.   <a class="btn btn-block btn-primary" href="{{ path('fill_products') }}">Import Produits</a>
  26.   <a class="btn btn-block btn-primary"  href="{{ path('fill_stock_history_point_of_sale') }}">Import Historique des Stocks</a>
  27.   {# <a class="btn btn-block btn-primary" disabled tabindex="-1" href="#">Import Historique des Stocks</a> #}
  28.   {# {{ path('fill_stock_history_products') }} #}
  29. {% endif %}
  30. {% endblock %}
  31. {% block footer %}
  32.         {% include 'footer.html.twig' %}
  33. {% endblock %}