{% for role in user.roles %}
{{ role }}
{% endfor %}
{{ user.timezone }}
{% set can_edit = app.user.id == user.id
or 'ROLE_SUPER_ADMIN' in app.user.roles
or ('ROLE_ADMIN' in app.user.roles and 'ROLE_SUPER_ADMIN' not in user.roles)
%}
{% set can_delete = app.user.id != user.id and (
'ROLE_SUPER_ADMIN' in app.user.roles or
('ROLE_ADMIN' in app.user.roles and 'ROLE_SUPER_ADMIN' not in user.roles)
) %}