{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% set bg_color = 'bg-blue-100 border-blue-500 text-blue-700' %} {% if category == 'success' %}{% set bg_color = 'bg-green-100 border-green-500 text-green-700' %}{% endif %} {% if category == 'danger' %}{% set bg_color = 'bg-red-100 border-red-500 text-red-700' %}{% endif %} {% if category == 'warning' %}{% set bg_color = 'bg-yellow-100 border-yellow-500 text-yellow-700' %}{% endif %} {% endfor %} {% endif %} {% endwith %}

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

أدخل بيانات الطلاب يدوياً أو قم باستيراد ملف CSV.

استيراد من ملف CSV

هام: تنسيق ملف CSV

يجب أن يكون الملف بصيغة CSV ومرمّزاً بترميز UTF-8.

يجب **ألا يحتوي** الملف على صف للعناوين، ويجب أن تكون الأعمدة بالترتيب الدقيق التالي:

اسم الطالب, العمر, اسم ولي الأمر, هاتف ولي الأمر 1, هاتف ولي الأمر 2, هاتف الطالب, الصف, اسم المدرسة, العنوان, المحفوظات

إذا كانت الحقول الاختيارية (هاتف ولي الأمر 2، هاتف الطالب) فارغة، اتركها كذلك.

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

{% for student in students %} {% else %} {% endfor %}
# اسم الطالب العمر ولي الأمر أرقام التواصل الصف المدرسة العنوان المحفوظات
{{ student['id'] }} {{ 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'] }}
لم تتم إضافة أي طالب بعد.