{% extends "factory_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if request.user.is_superuser == True %}
{% csrf_token %}
Today Attendance Summary report
{{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' %}
{% csrf_token %}
Today Attendance Summary report
{{form.sister_organization|as_crispy_field}}
{{form.branch|as_crispy_field}}
{% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %}
{% csrf_token %}
Today Attendance Summary report
{{form.branch|as_crispy_field}}
{% endif %} {% if department_temp %}

{{ company_info.name_en }}

{{ company_info.address_details }}

{{report_month}} {{report_year}}{{current_date}}

Today Attendance Summary report {% comment %} {% if department %} {{department}} {% endif %} {% if designation %}   -   {{designation}}{% endif %}

{{year}}  -  {{month}} {% endcomment %} {% if department %}(Department : {{department}}) {% endif %} {% if designation %} (Designation : {{designation}}) {% endif %} {% if from_date %} {{from_date}}  -  {{to_date}} {% endif %} {% for department_list in department_temp %} {% if department_list.0 %} {% endif %} {% for employee in department_list %} {% if forloop.last %} {% else %} {% endif %} {% endfor %} {% endfor %}
Designation Total Employee Present Absent
{{department_list.0.0}}
{{ employee.1 }} {{ employee.2 }} {{ employee.3 }} {{ employee.4 }}
Total {{ employee.7 }} {{ employee.5 }} {{ employee.6 }}
{{ employee.1 }} {{ employee.2 }} {{ employee.3 }} {{ employee.4 }}
Total Employee: {{grand_total_employee}} Total Present: {{grand_total_present}} Total Absent: {{grand_total_absent}}
Total Male: {{total_male}} Total Female: {{total_female}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}