{% extends "base.html" %} {% block title %}تسجيل الحضور - نظام إدارة روضة الأطفال{% endblock %} {% block content %}

تسجيل الحضور

{% if assigned_class %} تسجيل حضور أطفال قسم {{ assigned_class }} {% else %} تسجيل الحضور اليومي {% endif %}

التاريخ المحدد: {{ selected_date }}
{% if assigned_class %}
تسجيل حضور قسم {{ assigned_class }}
{% if attendance_records %}
{% for record in attendance_records %}
{{ record.name[0] }}
{{ record.name }}
{{ record.class }}
{% endfor %}
{% else %}
لا توجد أطفال في قسمك

يرجى التواصل مع الإدارة

{% endif %}
{% if attendance_records %}
إحصائيات سريعة لهذا اليوم

{{ attendance_records|selectattr('status', 'equalto', 'present')|list|length }}

حاضر

{{ attendance_records|selectattr('status', 'equalto', 'absent')|list|length }}

غائب

{{ attendance_records|selectattr('status', 'equalto', 'late')|list|length }}

متأخر

{{ attendance_records|length }}

إجمالي الأطفال
{% endif %} {% else %}
لم يتم تخصيص قسم لك بعد

يرجى التواصل مع الإدارة لتخصيص قسم لك

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}