{% for start_date, events in grouped_events %}
{{ start_date.strftime("%b") }}
{{ start_date.strftime("%d") }}
{{ start_date.strftime("%a") }}
{% for event in events %}
{{ event.start.strftime("%H:%M") }}
{{ event.end.strftime("%H:%M") }}
{% if event.description or event.location %}
{{ event.summary | urlize }}
{% if event.description %}
{#- description doesn't need an icon, just wastes space #}
{{ event.description | urlize | nl2br }}
{% endif %} {% if event.location %}
{{ event.location | urlize | nl2br }}
{% endif %}
{% else %} {{ event.summary }} {% endif %}
{%- if "AusbauLab" in event.categories %}
{%- elif event.color %}
{%- else %}
{%- endif %}
{% endfor %}
{% endfor %}