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

Employee Wise Attendance Log

{% 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

{% for log in atttendances_list %} {% endfor %}
SL No Employee In Time Out Time Action
{{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 %}
{% if atttendances_list.has_other_pages %} {% endif %}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}