{% load danceschool_tags i18n %}

{% trans group_header %}


{% regroup group|dictsort:"month" by month as group_list %} {% for month in group_list %}

{{ month.grouper|readable_month }} {% trans group_section %}

{% regroup month.list|dictsort:"weekday" by weekday as weekday_list %} {% for weekday in weekday_list %}

{% readable_weekday weekday.grouper %}s

{% for event in weekday.list %} {% include "core/registration/event_card.html" with event=event %} {% endfor %}
{% endfor %}
{% endfor %}