{{ include('stylesheets.html.twig') }}
Toggle navigation
{% set routeName = app.request.get('_route') %} {% set section = "dashboard" %} {% if routeName starts with 'ats_' %} {% set section = 'ats' %} {% elseif routeName starts with 'self_' %} {% set section = 'self' %} {% elseif routeName starts with 'user_' %} {% set section = 'user' %} {% endif %}
{% if not is_granted('ROLE_DASHBOARD') %}
Datorama
{% endif %} {% if is_granted('ROLE_DASHBOARD') %}
Dashboard
{% endif %} {% if is_granted('ROLE_SELF') %}
Self service
{% endif %} {% if is_granted('ROLE_DAF') %}
ATS
{% endif %}
{{ "Welcome"|trans }}
{% if app.user.firstName is defined %} {{ app.user.firstName }} {% else %} {{ app.user.username }} {% endif %}
{{ "Account"|trans }}
{{ "Logout"|trans }}
{% if section != 'user' %} {% include 'aside.html.twig' with {'routeName': routeName, 'section': section} %} {% endif %}
{% block body %}{% endblock %}
{{ include('javascripts.html.twig') }} {% block specificJS %}{% endblock %}