{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Shift Allocation {% endblock title %} {% load widget_tweaks %} {% block Style %} {% endblock Style %} {% block MainContent %}

Shift Allocation

{% if request.user.is_superuser == True %} {% include 'attendance_app/working_shift_allocation/super_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %} {% include 'attendance_app/working_shift_allocation/mother_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %} {% include 'attendance_app/working_shift_allocation/sister_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular' %} {% include 'attendance_app/working_shift_allocation/branch_admin_forms.html' %} {% endif %}
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}