{% load rich_text %} {% load i18n %} {% load utils %} {% load event_extras %}
{% for event in event_list %}

{{ event.title }}
{{ event.type }} {{ event.location }}

{% empty %}
{% translate "No results" %}
{% endfor %} {% for event in event_list %} {% for column_idx, column_contents in columns_by_event|get_items_for_key:event.pk %}
{% for shift in column_contents %} {% setvar request|participation_from_request:shift as participation %} {% setvar shift.get_signup_stats as stats %}
{% include "core/fragments/shift_header.html" with shift=shift participation=participation hide_date=True %}
{% if shift.label %}

{{ shift.label }}

{% endif %} {% include shift.structure with own_participation=participation %}
{% endfor %}
{% endfor %} {% endfor %}