📋 LOGS
{% if student %}
{{ student.name }}
{% endif %}
{% if student %}

{{ school.name }}

PORTAL HISTORY

{% else %}

Records

{% endif %}
{% if error %}
⚠️

Access Error

{{ error }}

{% else %}
{% if student.photo %} {{ student.name }} {% else %} {{ student.name|first|upper }} {% endif %}
{{ student.name }}
{% if student.student_class %}{{ student.student_class.name }}{% endif %} PIN: {{ student.pin }} {% if student.roll %}Roll: {{ student.roll }}{% endif %}
{% if logs %}
{{ total_records }}
Records
{{ total_checkins }}
Check-ins
{{ total_late }}
Late Days
{% endif %}
Recent Activity
{% if logs %}
{% for log in logs %} {% ifchanged log.timestamp|date:"Y-m-d" %}
{{ log.timestamp|date:"l, d M Y" }}
{% endifchanged %} {% if log.status == "PRESENT_IN" %}
Check In
Entry Recorded
{{ log.timestamp|date:"g:i A" }}
SUCCESS
{% elif log.status == "PRESENT_OUT" %}
Check Out
Exit Recorded
{{ log.timestamp|date:"g:i A" }}
SUCCESS
{% elif log.status == "LATE" %}
Late Arrival
Delayed Check-in
{{ log.timestamp|date:"g:i A" }}
LATE
{% elif log.status == "LATE_OUT" or log.status == "LATE_OUT_APPROVED" %}
Late Departure
Late Checkout
{{ log.timestamp|date:"g:i A" }}
OVERTIME
{% elif log.status == "EARLY_OUT" %}
Early Departure
Left before time
{{ log.timestamp|date:"g:i A" }}
EARLY
{% elif log.status == "LUNCH_BREAK" %}
Lunch Break
Break Period
{{ log.timestamp|date:"g:i A" }}
BREAK
{% elif log.status == "HOLD" %}
Pending Review
Manual Review Needed
{{ log.timestamp|date:"g:i A" }}
HOLD
{% else %}
Present
Active Status
{{ log.timestamp|date:"g:i A" }}
NORMAL
{% endif %} {% endfor %}
{% else %}
📭

No attendance records found for the last 30 days.

{% endif %} {% endif %}