themes/BootstrapTheme/SyliusShopBundle/views/Menu/_security.html.twig line 1

Open in your IDE?
  1.     {% if is_granted('ROLE_USER') %}
  2.         <li class="">
  3.             <a class="compte-link link-other" href="{{ path('sylius_shop_account_dashboard') }}"><span>{{ app.user.customer.fullName }}</span></a>
  4.         </li>
  5.         <li class="loggout-user">
  6.             <a class="" href="{{ path('sylius_shop_logout') }}" {{ sylius_test_html_attribute('logout-button') }}>{{ 'sylius.ui.logout'|trans }}</a>
  7.         </li>
  8.     {% else %}
  9.         <li>
  10.             <a class="compte-link link-other" href="{{ path('sylius_shop_login') }}"><span>{{ 'sylius.ui.my_account'|trans }}</span></a>
  11.         </li>
  12.     {% endif %}