templates/default/components/user-info.twig line 1

Open in your IDE?
  1. <script type="text/x-template" id="user-info">
  2.     <div class="user-info" v-if="isActive && isLogin">
  3.         <p class="user-info-title">
  4.             {% trans %}Hi{% endtrans %} <span v-text="user.name"></span>!
  5.         </p>
  6.         <div class="user-info-item">
  7.             <a href="{{ path('customer_account') }}">{% trans %}My Account{% endtrans %}</a>
  8.             <a v-if="isSeller" href="{{ path('seller_account') }}">{% trans %}Seller Dashboard{% endtrans %}</a>
  9.             <a href="{{ path('customer_wishlists') }}">{% trans %}Wishlists{% endtrans %}</a>
  10.             <a href="{{ path('app_logout') }}">{% trans %}Logout{% endtrans %}</a>
  11.         </div>
  12.     </div>
  13. </script>