Class Code
Number
Name
Eng Name
Attendance
{% if data != None %}
{% for homeroom in all_stud_list %}
{% for student in all_stud_list[homeroom] %}
{{homeroom}}
{{ student }}
{{ all_stud_list[homeroom][student]['name'] }}
{{ all_stud_list[homeroom][student]['eng_name'] }}
{% endfor %}
{% endfor %}
{% endif %}