{% extends 'base.html' %} {% block title %}Staff Details - {{ staff.name }}{% endblock %} {% block styles %} {% endblock %} {% block content %}
View and manage staff information
Email: {{ staff.email }}
Phone: {{ staff.phone }}
Restaurant: {{ staff.restaurant }}
Date | Clock In | Clock Out | Status | Notes |
---|---|---|---|---|
{{ record.date.strftime('%Y-%m-%d') }} | {{ record.clock_in.strftime('%H:%M') if record.clock_in else '-' }} | {{ record.clock_out.strftime('%H:%M') if record.clock_out else '-' }} | {{ record.status|title }} | {{ record.notes or '-' }} |
Review Period | Attendance Rate | Punctuality Rate | Notes |
---|---|---|---|
{{ record.review_period }} | {{ record.attendance_rate }}% | {{ record.punctuality_rate }}% | {{ record.notes or '-' }} |