feat: unify pickup selection

This commit is contained in:
Björn Fromme
2025-10-06 18:07:07 +02:00
parent b7b80296e9
commit b66d453881
19 changed files with 119 additions and 325 deletions
+4 -10
View File
@@ -128,17 +128,11 @@
</div>
{% endif %}
{# Pickup Locations #}
{% if participant.pickupOutbound %}
{# Pickup Location #}
{% if participant.pickup %}
<div>
<dt class="text-gray-600 font-semibold">Zustieg Hinfahrt</dt>
<dd>{{ participant.pickupOutbound.label }}</dd>
</div>
{% endif %}
{% if participant.pickupInbound %}
<div>
<dt class="text-gray-600 font-semibold">Zustieg Rückfahrt</dt>
<dd>{{ participant.pickupInbound.label }}</dd>
<dt class="text-gray-600 font-semibold">Zu- und Ausstieg</dt>
<dd>{{ participant.pickup.label }}</dd>
</div>
{% endif %}