{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} General Report {% endblock title %} {% load widget_tweaks %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Attendance General Report

{% if request.user.is_superuser == True %} {% include 'report_app/attendance_general_report/super_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %} {% include 'report_app/attendance_general_report/mother_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %} {% include 'report_app/attendance_general_report/sister_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular' %} {% include 'report_app/attendance_general_report/branch_admin_forms.html' %} {% endif %} {% if report_list %}

{{ sister_organization }}

{{ branch }}
{{ branch.address_details }}

Attendence General 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 report in report_list %} {% endfor %}
SL No Employee Code Employee Name Work Place Working Day Holiday Early Time Late Time Over Time Working Time
{{forloop.counter}} {%if report.employee_code %}{{report.employee_code}} {% else %} {{report.auto_employee_code}} {% endif %} {{report.employee_name}} {{report.work_place}} {{report.work_day}} {{report.holiday}} {{report.early}} {{report.late}} {{report.over}} {{report.working_hours}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}