{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Line Wise Log Delete {% endblock title %} {% load widget_tweaks %} {% block Style %} {{form.media}} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Line Wise Log delete

{% if request.user.is_superuser == True %} {% include 'attendance_app/attendance_log/line_wise/index/super_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %} {% include 'attendance_app/attendance_log/line_wise/index/mother_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %} {% include 'attendance_app/attendance_log/line_wise/index/sister_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular' %} {% include 'attendance_app/attendance_log/line_wise/index/branch_admin_forms.html' %} {% endif %}
{% if log_list_query %}
{% csrf_token %}

Line Wise Log delete {{date}}

{% for log in log_list_query %} {% endfor %}
SL No Code Name Date IN OUT
Check All
{{ forloop.counter }} {%if log.employee.employee_code != None %}{{log.employee.employee_code}} {% else %} {{log.employee.auto_employee_code}} {% endif %} {{log.employee.name_en}} {{log.date}} {{log.in_time.time}} {{log.out_time.time}}
  • {% endif %}
    {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}