{% for room, students in student_groups.items() %}
{% include 'exam_overview_table.html' %}
{% set students_sorted_by_seat = students | sort(attribute='seat') %}
{% for student in students_sorted_by_seat %}
{% include 'seating_card.html' %}
{% include 'login_sheet.html' %}
{% endfor %}
{% endfor %}