{% extends 'base.html' %} {% load static %} {% block title %}Daftar Siswa & RMIB - PRESTISIA{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Daftar Siswa

Manajemen data siswa dan tes RMIB

Total

{{ total_students }}

Total Siswa

{% if total_students > 0 %}{% widthratio completed_tests total_students 100 %}%{% else %}0%{% endif %}

{{ completed_tests }}

Tes Selesai

{% if total_students > 0 %}{% widthratio in_progress_tests total_students 100 %}%{% else %}0%{% endif %}

{{ in_progress_tests }}

Sedang Tes

{% if total_students > 0 %}{% widthratio pending_tests total_students 100 %}%{% else %}0%{% endif %}

{{ pending_tests }}

Belum Tes

Reset
{% if search or class_filter or status_filter or gender_filter or year_filter %}
Filter Aktif: {% if search %}
{{ search }}
{% endif %} {% if class_filter %}
Kelas {{ class_filter }}
{% endif %} {% if status_filter %}
{{ status_filter|capfirst }}
{% endif %} {% if gender_filter %}
{% for g_val, g_label in gender_choices %}{% if g_val == gender_filter %}{{ g_label }}{% endif %}{% endfor %}
{% endif %} {% if year_filter %}
{{ year_filter }}
{% endif %}
{% endif %}
{% if request.user.is_staff %}
{% endif %}

Data Siswa

Menampilkan {{ page_obj.start_index }}-{{ page_obj.end_index }} dari {{ page_obj.paginator.count }} siswa

{% if request.user.is_staff %}
{% endif %}
{% if students %} {% if request.user.is_staff %}{% endif %} {% for student in students %} {% if request.user.is_staff %} {% endif %} {% endfor %}
Avatar Siswa NISN Kelas Jenis Kelamin Status Tes Prestasi Aksi
{{ student.name|first|upper }}
{{ student.name }}
{{ student.birth_place|default:"—" }}
{{ student.birth_date|date:"d M Y" }}
{{ student.nisn }}
{{ student.student_class }} {% if student.gender == 'L' %} Laki-laki {% else %} Perempuan {% endif %} {% if student.test_status == 'completed' %} Selesai {% elif student.test_status == 'in_progress' %} Sedang Tes {% else %} Belum Tes {% endif %} {% if student.achievements.count > 0 %}
{{ student.achievements.count }} {{ student.achievements.count }} Prestasi
{% else %} {% endif %}
Lihat Detail {% if request.user.is_staff %} Edit Data {% endif %} {% if student.test_status != 'completed' %} Mulai Tes {% else %} Lihat Hasil {% endif %}
{% else %}

Tidak Ada Data

{% if search or class_filter or status_filter or gender_filter or year_filter %} Tidak ada siswa sesuai dengan filter yang Anda terapkan. {% else %} Belum ada data siswa dalam sistem. Silakan tambahkan data siswa terlebih dahulu. {% endif %}

{% if search or class_filter or status_filter or gender_filter or year_filter %} Reset Filter {% else %} Tambah Siswa {% endif %}
{% endif %}
{% if page_obj.paginator.num_pages > 1 %}
Halaman {{ page_obj.number }} dari {{ page_obj.paginator.num_pages }} (Total: {{ page_obj.paginator.count }} siswa)
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}