{% 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 %}
{% block header %} {% include 'partials/topbar.html' %} {% endblock %} {% block sidebar %} {% if user.role == 'super_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 %}