topBar.html.twig 463B

1234567891011121314151617181920
  1. {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  2. <div id="top_search">
  3. {% render(controller("MuzichCoreBundle:Search:renderGlobalSearchForm")) %}
  4. </div>
  5. <div id="top_bar">
  6. <a href="{{ path('my_account') }}" >
  7. {{ 'top_bar.my_account'|trans({'%name%' : app.user.name}, 'navigationui') }}
  8. </a>
  9. <a href="{{ path('fos_user_security_logout') }}" >
  10. {{ 'top_bar.logout'|trans({}, 'navigationui') }}
  11. </a>
  12. </div>
  13. {% endif %}