Total Students
Total Lessons
Overall Completion
Lessons Completed
| # | Student Name | {% for lesson in all_lessons %}
{{ lesson.title[:12] }}{% if lesson.title|length > 12 %}..{% endif %}
|
{% endfor %}
|---|---|---|
| {{ loop.index }} | {{ student.nama_siswa }} | {% 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' %}{% if status == 'completed' %} {% elif status == 'in_progress' %} {% else %} {% endif %} | {% endfor %}
There are no students registered in the system yet.