{% endif %}
{# Rentals #}
{% if participant.rentals is not empty %}
Ausrüstung
{% for rental in participant.rentals %}
{{ rental.label }}
{% endfor %}
{% endif %}
{# Rental Insurance #}
{% if participant.rentalInsuranceSelected and participant.rentalInsurance %}
Leihmaterial-Versicherung
{{ participant.rentalInsurance.label }}
{% endif %}
{# Body Dimensions (if rentals selected) #}
{% if participant.rentals is not empty %}
{% if participant.height or participant.weight or participant.shoeSize %}
Körpermaße
{% if participant.height %}Größe: {{ participant.height }} cm{% endif %}
{% if participant.weight %}{% if participant.height %}, {% endif %}Gewicht: {{ participant.weight }} kg{% endif %}
{% if participant.shoeSize %}{% if participant.height or participant.weight %}, {% endif %}Schuhgröße: {{ participant.shoeSize }}{% endif %}
{% endif %}
{% endif %}
{# Courses #}
{% if participant.courses is not empty %}
Kurse
{% for course in participant.courses %}
{{ course.label }}
{% endfor %}
{% endif %}
{# Additional Services #}
{% if participant.additionalServices is not empty %}
Zusatzleistungen
{% for service in participant.additionalServices %}
{{ service.label }}
{% endfor %}
{% endif %}
{# Insurance #}
{% if participant.insurance %}