{# This file is part of the Sonata package. (c) Thomas Rabaix For the full copyright and license information, please view the LICENSE file that was distributed with this source code. #} {% block user_block %} {% if app.user %} {% set _bg_class = 'bg-light-blue' %} {% set _logout_uri = url('sonata_user_admin_security_logout') %} {% set _logout_text = 'user_block_logout'|trans({}, 'SonataUserBundle') %} {% if sonata_user.isImpersonatingEnabled and is_granted('IS_IMPERSONATOR') %} {% set _bg_class = 'bg-light-green' %} {% set _logout_uri = url(sonata_user.impersonatingRoute, sonata_user.impersonatingRouteParameters|merge({'_switch_user': '_exit'})) %} {% set _logout_text = 'switch_user_exit'|trans({}, 'SonataUserBundle') %} {% endif %}
  • Avatar

    {{ app.user }}

  • {% endif %} {% endblock %}