symfony - How to use OR Condition in twig and symfony2 -
{% if ( session.get('userrole') != 'role client user' ) or ( session.get('actionpermission') == 'true' ) %} {# stuff #} {% endif; %}
{% if (session.get('userrole') != 'role client user' or session.get('actionpermission') == 'true') %} {# ... stuff #} {% endif %}
Comments
Post a Comment