{% extends 'template.html' %} {% block title %}الصفحة الرئيسية{% endblock %} {% block content %}

نظام إدارة الطلاب

{# NEW: Button to toggle CSV Import section #}
{# WRAPPED: CSV Import section is now initially hidden #}

الطلاب المسجلون

{% for student in students %} {% else %} {% endfor %}
# الإجراءات اسم الطالب العمر ولي الأمر أرقام التواصل الصف المدرسة العنوان المحفوظات تاريخ التسجيل ملاحظات النقاط
{{ loop.index }} {{ student['student_name'] }} {{ student['age'] }} {{ student['parent_name'] }}
ولي الأمر 1: {{ student['parent_phone_1'] }} {% if student['parent_phone_2'] %}ولي الأمر 2: {{ student['parent_phone_2'] }}{% endif %} {% if student['student_phone'] %}الطالب: {{ student['student_phone'] }}{% endif %}
{{ student['grade'] }} {{ student['school_name'] }} {{ student['address'] }} {{ student['memorizing'] }} {{ student['registration_date'] }} {{ student['notes'] or 'لا يوجد' }} {{ student['points'] }}
لم تتم إضافة أي طالب بعد.
{% endblock %}