{% extends 'base.html' %} {% load static %} {% block title %}Attendance Record - Rapha-Bethel BNPS{% endblock %} {% block content %}
| Staff Member | {{ attendance.staff.user.get_full_name }} |
| Employee ID | {{ attendance.staff.employee_id }} |
| Role | {{ attendance.staff.get_role_display }} |
| Date | {{ attendance.date|date:"l, d F Y" }} |
| Status | {{ attendance.get_status_display }} |
| Check In | {{ attendance.check_in_time|default:"Not recorded" }} |
| Check Out | {{ attendance.check_out_time|default:"Not recorded" }} |
| Remarks | {{ attendance.remarks|default:"—" }} |