Loading...
{% if current_user.is_authenticated and not hide_sidebar %}
Name: {{ current_user.full_name }}
Emp Code: {{ current_user.employee_code }}
Role: {{ current_user.role.name }}
Reporting Manager: {{ current_user.reporting_manager.full_name if current_user.reporting_manager else '—' }}
Designation: {{ current_user.designation.title if current_user.designation else '—' }}
Logout
{% else %}
{% endif %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}