{% if event.end %}
{% if event.end|date == event.start|date and event.end.hour|subtract:event.start.hour > 3 %}{{ event.end|time:"TIME_FORMAT" }}{% endif %}
{% endif %}
+ {% for child in event.children.all %}
+ {% with child as event %}
+ / {{ event.start }}
+ {% if event.end %}
+ {% if event.end|date == event.start|date and event.end.hour|subtract:event.start.hour > 3 %}{{ event.end|time:"TIME_FORMAT" }}{% endif %}
+ {% endif %}
+ {% endwith %}
+ {% endfor %}
{% if event.location %}
<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>