<a href="{% url "event_list_location" event.location.slug %}" class="event__meta__location">{{ event.location }}</a>
{% endif %}
</div>
+ {% if not event.parent %}
<div class="split-right">
<a href="{{ event.get_absolute_url }}" class="btn">
<i class="icon icon__bookmark"></i> {% trans "Booking" %}
</a>
</div>
+ {% endif %}
</div>
</div>
</div>
<a href="{{ event.get_absolute_url }}">{{ event.title }}</a>
</p>
{% include "agenda/includes/event_metainfo_slider.html" %}
+ {% for child in event.children.all %}
+ {% with child as event %}
+ {% include "agenda/includes/event_metainfo_slider.html" %}
+ {% endwith %}
+ {% endfor %}
</div>
</div>
</li>