{% extends "base.html" %} {% block everything %} Helfer:innen für {{ room.name }} Startzeit Helfer:innen {% for shift in room.valid_shifts.all|dictsort:"start_at" %} {{ shift.start_at }} {% for reg in shift.valid_registrations.all %}{{ reg.helper.name }}{% if not forloop.last %}, {% endif %}{% endfor %} {% endfor %} {% endblock %}