{% extends 'partials/base.html' %} {% load static %} {% block content %} {% load custom_filters %}
{% include 'partials/error-meg.html' %}
{% block pagetitle %} {% include 'partials/page-title.html' with pagetitle='Dashboard' title='All Attendance' %} {% endblock %}

All Attendance

Clear Filter
{% for day in days %} {% for item in day.lectures %} {% if forloop.first %} {% endif %} {% if forloop.first %} {% endif %} {% if item.lecture %} {% else %} {% endif %} {% if item.attendance %} {% if item.show_regularize or item.regularization %} {% else %} {% endif %} {% else %} {% if item.lecture %} {% else %} {%endif%} {% endif %} {% endfor %} {% endfor %}
ID Date Intake Year Class Name Start / End Time Check-in Time Check-out Time Duration Login Location Logout Location View Image Regularize
{{ forloop.parentloop.counter }}{{ day.date }}{{ item.lecture.intake }} {{ item.lecture.class_assigned }} ({{ item.lecture.class_assigned.section_name }}) {{ item.lecture.start_time|time:"H:i" }} - {{ item.lecture.end_time|time:"H:i" }}No Lecture Scheduled {{ item.attendance.lecture_login_time|time:"H:i" }} {{ item.attendance.lecture_logout_time|date:" H:i Y-m-d"|default:"Not Checked Out" }} {% if item.duration %} {{ item.duration }}{% else %} — {% endif %} {{ item.attendance.login_location_name|truncatechars:20|default:"—" }} {{ item.attendance.logout_location_name|truncatechars:20|default:"—" }} {% if item.attendance.login_image %} Login
{% endif %} {% if item.attendance.logout_image %} Logout {% endif %}
{%if not item.regularization%} {%else%} {% if item.regularization.status == 'pending' %} Pending {% elif item.regularization.status == 'approved' %} Approved {% elif item.regularization.status == 'rejected' %} Rejected {% else %} {% endif %} {%endif%} No Attendance {%if not item.regularization%} {%else%} {% if item.regularization.status == 'pending' %} Pending {% elif item.regularization.status == 'approved' %} Approved {% elif item.regularization.status == 'rejected' %} Rejected {% else %} {% endif %} {%endif%}
{% endblock %} {% block javascript %} {{ block.super }} {% endblock %}