{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Monthly Employee Attendance Report {% endblock title %} {% load widget_tweaks %} {% block Style %} {% endblock Style %} {% block MainContent %}

Single Employee Monthly Attendance Report

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

{{ sister_organization }}

{{ branch }}
{{ branch.address_details }}
Employee Name: {{employee.name_en}}
Employee Code:{{employee.employee_code}}
Designation:{{employee.designation}}

Single Employee Monthly Attendance Report {%if department %} (Department : {{department}}) {% endif %} {% if designation %} (Designation : {{designation}}) {% endif %} {% if month %} {{month}}  -  {{year}} {% endif %}

{% for report in report_dict %} {% if employee.over_time == 'Eligible' %} {% else %} {% endif %} {% endfor %}
Date Status In Time Out Time Over Time Working Hour
{{report.1.date}} {{report.1.status}} {{report.1.in_time}} {{report.1.out_time}}{{report.1.over_time}}{{report.1.Working_time}}
      Total Present: {{total_present}}         Total OT: {{total_OT}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}