{% 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 atttendances_list %}
Employee Wise Attendance Log
SL No
Employee
In Time
Out Time
Action
{% for log in atttendances_list %}
{{forloop.counter}}
{{ log.employee }}
{{ log.in_time.time}}
{{ log.out_time.time }}
{% if 'department_delete' in user_permission_list or request.user.user_type == 'Sister_Organization_admin' or request.user.user_type == 'Mother_Organization_admin' or request.user.is_superuser == True %}
{% endif %}
{% endfor %}
{% if atttendances_list.has_other_pages %}
{% endif %}