Student Progress Report

Export CSV

{{ all_students_progress|length }}

Total Students

{{ all_lessons|length }}

Total Lessons

0%

Overall Completion

0

Lessons Completed

Student Progress Overview

{% if all_students_progress %}
{% for lesson in all_lessons %} {% endfor %} {% for student in all_students_progress %} {% for lesson in all_lessons %} {% set lesson_key = lesson.filename.replace('.md', '') %} {% set status = student[lesson_key] if lesson_key in student else 'not_started' %} {% endfor %} {% endfor %}
# Student Name
{{ lesson.title[:12] }}{% if lesson.title|length > 12 %}..{% endif %}
{{ loop.index }} {{ student.nama_siswa }} {% if status == 'completed' %} {% elif status == 'in_progress' %} {% else %} {% endif %}
{% else %}

No student data available

There are no students registered in the system yet.

{% endif %}