{% for category in date_info.events %}
{% for event in category %}
{{ event.filtered_title | raw }}
{% if show_location_in_title and event.venue is not empty %}
{{ text_venue_separator | format( event.venue ) }}
{% endif %}
{{ action_buttons | raw }}
{% set edit_post_link = event.edit_post_link %}
{% if edit_post_link is not empty %}
{{ text_edit }}
{% endif %}
{{ event.timespan_short | raw }}
{# Hidden summary, until clicked #}
{% if event.content_img_url is empty and event.avatar_not_wrapped is not empty %}
{{ event.avatar_not_wrapped | raw }}
{% endif %}
{{ event.filtered_content | raw }}
{% endfor %} {# event in category #}
{% endfor %} {# category in date_info.events #}
{% endfor %} {# date, date_info in dates #}
{% endif %} {# dates is not empty #}