{% load static %}
{% block head %}
{% include 'partials/head.html' %}
{% endblock %}
{% if request.path == '/index' or request.path == '/teacher-dashboard' or request.path == '/student-dashboard' or request.path == '/parent-dashboard' %}
{% endif %}
{% if user.role == 'super_admin' or user.role == 'admin' %}
{% url 'admin_index' as dashboard_urls %}
{% elif user.role == 'teacher' %}
{% url 'teacher_dashboard' as dashboard_urls %}
{% elif user.role == 'student' %}
{% url 'student_dashboard' as dashboard_urls %}
{% elif user.role == 'librarian' %}
{% url 'librarian_dashboard' as dashboard_urls %}
{% else %}
{% url 'index' as dashboard_urls %}
{% endif %}
{% block header %}
{% include 'partials/topbar.html' %}
{% endblock %}
{% block sidebar %}
{% if user.role == 'super_admin' or user.role == 'admin' %}
{% include 'partials/adminsidebar.html' %}
{% else %}
{% include 'partials/sidebar.html' %}
{% endif %}
{% endblock %}
{% block content %}
{% endblock %}
{% block javascript %}
{% include 'partials/script.html' %}
{% endblock %}
{% block themesettings %}
{% if "layout-rtl" not in request.path and "layout-default" not in request.path and "layout-mini" not in request.path and "layout-box" not in request.path and "layout-dark" not in request.path %}
{% include 'partials/theme-setting.html' %}
{% endif %}
{% endblock %}