{% load timeslots %} {% if forloop.first %} {% if timeslot.start|time:"Hi" <= "0600" or timeslot.end.hour < timeslot.start.hour %} {# the show starts at or before 6 am or yesterday #}
{{ timeslot.show.name }}
{% else %} {# the show doesn´t start at or before 6 am -> default_show until the start of the show #}
{{ default_show.name }}
{{ timeslot.show.name }}
{% endif %} {% endif %} {% if not forloop.first and not forloop.last %}
{{ timeslot.show.name }}
{% endif %} {% if forloop.last %} {% if timeslot.end|time:"Hi" <= "0600" and timeslot.pk != 99678 %}
{{ timeslot.show.name }}
{% else %}
{{ timeslot.show.name }}
{% endif %} {% endif %} {% if timeslot.end < timeslot.get_next_by_start.start and timeslot.end|time:"Hi" != "0600" %} {% if not forloop.last %}
{{ default_show.name }}
{% else %}
{{ default_show.name }}
{% endif %} {% endif %}