templates/commun/header-menu.html.twig line 1

Open in your IDE?
  1. <ul id="header_menu" class="nav nav-pills d-print-none text-center ml-sm-auto pt-1 pb-1">
  2.     <li class="nav-item ml-1 mr-1"><a href="/" class="nav-link active" aria-current="page" title="Accueil"><i class="fas fa-home"></i></a></li>
  3.     {% if app.user.customerNumber is defined %}
  4.     <li class="nav-item ml-1 mr-1">
  5.         <a href="/mon-compte" class="nav-link bg-primary text-white" aria-current="page" title="Mon compte"><i class="fas fa-user"></i></a>
  6.     </li>
  7.     {% if app.getSession().get('uObpDatas').loyalty.bankroll.available_amount is defined %}
  8.     <li class="nav-item ml-1 mr-1">
  9.         <a href="/mon-compte" class="nav-link bg-primary text-white" aria-current="page" title="Ma cagnotte">
  10.             <i class="fas fa-wallet"></i>&nbsp;
  11.             {# <span>{{ (app.getSession().get('uObpDatas').loyalty.bankroll.available_amount/100)|number_format(2, '.', ',') }} €</span> #}
  12.             <span>-.-- €</span>
  13.         </a>
  14.     </li>
  15.     {% endif %}
  16.     <li class="nav-item ml-1 mr-1">
  17.         <a href="/panier" class="nav-link bg-primary text-white" aria-current="page" title="Panier">
  18.             <i class="fas fa-shopping-cart"></i>
  19.             {% if count_cart is defined %}
  20.             <span class="ml-2 badge bg-light text-secondary rounded-pill">{{ count_cart }}</span>
  21.             {% endif %}
  22.         </a>
  23.     </li>
  24.     <li class="nav-item ml-1 mr-1">
  25.         <a class="nav-link bg-danger text-white px-2" href="{{ path('app_logout') }}" title="Déconnexion"><i class="fas fa-sign-out-alt"></i></a>
  26.     </li>
  27.     {% elseif app.user != null %}
  28.     <li class="nav-item ml-1 mr-1">
  29.         <a href="/" class="nav-link bg-warning text-white" aria-current="page" title="Vous êtes connecté en admin"><i class="fas fa-user-shield"></i></a>
  30.     </li>
  31.     <li class="nav-item ml-1 mr-1">
  32.         <a class="nav-link bg-danger text-white px-2" href="{{ path('app_logout') }}" title="Déconnexion"><i class="fas fa-sign-out-alt"></i></a>
  33.     </li>
  34.     {% else %}
  35.     <li class="nav-item ml-1 mr-1">
  36.         <a href="/panier" class="nav-link bg-primary text-white" aria-current="page" title="Panier">
  37.             <i class="fas fa-shopping-cart"></i>
  38.             {% if count_cart is defined %}
  39.             <span class="ml-2 badge bg-light text-secondary rounded-pill">{{ count_cart }}</span>
  40.             {% endif %}
  41.         </a>
  42.     </li>
  43.     <li class="nav-item ml-1 mr-1">
  44.         <a href="/mon-compte" class="nav-link bg-primary text-white" aria-current="page" title="Mon compte"><i class="fas fa-user"></i></a>
  45.     </li>
  46.     {% endif %}
  47. </ul>