{% load static %}
{{ employee_first_name|title }}
{% if user_group == 'de' %} PRESIDENTE {% elif user_group == 'deputy' %} VICE PRESIDENTE {% elif user_group == 'unit' %} CHEFE DIVIZAUN {% elif user_group == 'dep' %} CHEFE EKIPA {% elif user_group == 'hr' %} RH {% else %} {{ user_group|upper }} {% endif %}
{% if user.is_authenticated %} {% if user_group == 'staff' %} {% include 'main/sidebar_staff.html' %} {% elif user_group == 'dep' %} {% include 'main/sidebar_dep.html' %} {% elif user_group == 'unit' %} {% include 'main/sidebar_unit.html' %} {% elif user_group == 'deputy' %} {% include 'main/sidebar_deputy.html' %} {% elif user_group == 'de' %} {% include 'main/sidebar_de.html' %} {% elif user_group == 'hr' %} {% include 'main/sidebar_hr.html' %} {% elif user_group == 'hr_s' %} {% include 'main/sidebar_hr_s.html' %} {% else %} {% include 'main/sidebar_admin.html' %} {% endif %} {% endif %}