{# Compact participant card with name, room, price, and edit button #} {% set isCanceled = cardData.isCanceled is defined ? cardData.isCanceled : false %} {% set isValid = cardData.isValid is defined ? cardData.isValid : true %} {% set errorMessages = cardData.errorMessages|default([]) %} {% set mode = mode|default('create') %}
{{ participantNumber }}
{{ cardData.name }}
{% if isCanceled %}
storniert
{% elseif not isValid %}
unvollständige/fehlerhafte Daten
{% else %}
{{ cardData.roomName }}
{{ cardData.price }}
{% endif %}
{% if not isCanceled %} {% if mode == 'edit' %} {% set url = path('app_booking_edit_participant', {id: bookingId, index: index}) %} {% else %} {% set url = path('app_booking_create_step_2_participant', {index: index}) %} {% endif %} {% endif %}