{% load static %} {% block header %}
{% if user.role == 'super_admin' or user.role == 'admin' %} {% url 'admin_index' as redirect_url %} {% elif user.role == 'teacher' %} {% url 'teacher_dashboard' as redirect_url %} {% elif user.role == 'student' %} {% url 'student_dashboard' as redirect_url %} {% elif user.role == 'librarian' %} {% url 'librarian_dashboard' as redirect_url %} {% elif user.role == 'visa_manager' or user.role == 'accounted' %} {% url 'librarian_dashboard' as redirect_url %} {% else %} {% url '' as redirect_url %} {% endif %}
Logo {% comment %} {% endcomment %}
{% endblock header %}