{% 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' %}
{% 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 %}