{% endif %}
{# Selected Services #}
{% set services = [] %}
{% if participant.board is not empty %}
{% for boardItem in participant.board %}
{% set services = services|merge(['Verpflegung: ' ~ boardItem.label]) %}
{% endfor %}
{% endif %}
{% if participant.skiPass %}
{% set services = services|merge(['Skipass: ' ~ participant.skiPass.label]) %}
{% endif %}
{% if participant.rentals is not empty %}
{% for rental in participant.rentals %}
{% set services = services|merge(['Ausrüstung: ' ~ rental.label]) %}
{% endfor %}
{% endif %}
{% if participant.courses is not empty %}
{% for course in participant.courses %}
{% set services = services|merge(['Kurs: ' ~ course.label]) %}
{% endfor %}
{% endif %}
{% if participant.additionalServices is not empty %}
{% for service in participant.additionalServices %}
{% set services = services|merge(['Service: ' ~ service.label]) %}
{% endfor %}
{% endif %}
{% if participant.insurance %}
{% set services = services|merge(['Versicherung: ' ~ participant.insurance.label]) %}
{% endif %}
{% if services is not empty %}