-
-
- Reservierung
- {% for reservation in reservations_for_event -%}
- {{ reservation.boat.name }}
- {%- if not loop.last %} + {% endif -%}
- {% endfor -%}
- : {{ reservation.time_desc }}
-
- (von {{ reservation.user_applicant.name }}, Grund: {{ reservation.usage}})
-
-
+ {% for _, reservations_for_event in day.boat_reservations %}
+ {% set reservation = reservations_for_event[0] %}
+
+
+
+
+ ⏳ {{ reservation.time_desc }} ({{ reservation.user_applicant.name }})
+
+ {% for reservation in reservations_for_event -%}
+ {{ reservation.boat.name }}
+ {%- if not loop.last %} + {% endif -%}
+ {% endfor -%}
+
+
+ (Reservierung - {{ reservation.usage}})
- {% endfor %}
+
+ {% endfor %}
{# --- END Boatreservations--- #}
{# --- START Events --- #}
{% if day.events | length > 0 %}