themes/BootstrapTheme/templates/bundles/SyliusShopBundle/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_profile_update') }}" title="{{ app.user.customer.fullName }}"><strong class="ico-compte-link"></strong><span>{{ app.user.customer.fullName }}</span></a>
  4.     </li>
  5.     
  6. {% else %}
  7.     <li  class="">
  8.         <a class="compte-link link-other" href="{{ path('sylius_shop_login') }}" title="{{"app.ui.log_in"|trans|raw}}"><strong class="ico-compte-link"></strong><span>{{"app.ui.log_in"|trans|raw}}</span></a>
  9.     </li>
  10. {% endif %}