In Symfony 2 templates (using Twig), how can I effectively check whether a user is not logged in?
I don\'t want to use ROLE checks. I want a straightfor
ROLE
You can check if app.user is set.
{% if app.user %} # user is logged in {% else %} # user is not logged in {% endif %}