{% extends 'base.html' %} {% load static %} {% block title %}Attendance Records{% endblock %} {% block content %}

Attendance Records

Record Attendance Bulk Recording
Filter Records
Clear
Attendance Records
{% for record in attendance_records %} {% empty %} {% endfor %}
Employee Date Status Check In Check Out Hours Worked Overtime Total Hours Notes
{{ record.employee.full_name }} {{ record.date|date:"d M Y" }} {{ record.get_status_display }} {{ record.check_in_time|default:"-" }} {{ record.check_out_time|default:"-" }} {{ record.hours_worked|default:"-" }} {{ record.overtime_hours|default:"0" }} {{ record.total_hours|default:"-" }} {{ record.notes|truncatechars:50|default:"-" }}
No attendance records found.
{% if is_paginated %} {% endif %}
{% endblock %}