{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Departments {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if request.user.is_superuser == True %}

Department

{% csrf_token %}
{{form.mother_organization|as_crispy_field }}
{{form.sister_organization|as_crispy_field }}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %}

Department

{% csrf_token %}
{{form.sister_organization|as_crispy_field }}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %}

Department

{% csrf_token %}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Branch'%}
{% endif %}

Monthly Sewing Production Information

{% if sewing_list %}
{% for sewing in sewing_list %} {% endfor %}
SL No Branch Month Year Target Sewing Qty Remaining Action
{{forloop.counter}} {{ sewing.branch }} {{ sewing.get_month_display }} {{ sewing.year }} {{ sewing.targeted_qty }} {{ sewing.production_qty }} {{ sewing.remaining_qty }}
{% if department_list.has_other_pages %} {% endif %}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}