Jobprofil
{{ assignment.jobProfile.name }}
Destination
{{ assignment.destination.product }}
{{ assignment.destination.hotel }}
Einsatztermin
{{ assignment.totalPeriod.start|date('d.m.Y') }} - {{ assignment.totalPeriod.end|date('d.m.Y') }}
{% if assignment.pickup and assignment.pickupDate %}
Busabfahrt
{{ assignment.pickupDate|date('d.m.Y') }}
Busbegleitung
ab {{ assignment.pickup|bpn_pickup_label }}
{% endif %}
Du bekommst
{{ assignment.benefits|nl2list }}
Honorar
{% for fee in assignment.fees %}
{{ fee.name }} {{ fee.value|format_money }}
{% endfor %}
Voraussetzungen für diesen Einsatz
{% if assignment.pickup and assignment.pickupDate %}
-
Busbegleitung ab {{ assignment.pickup|bpn_pickup_label }} am {{ assignment.pickupDate|date('d.m.Y') }}
{% if teamer.hasPickup(assignment.pickup) %}
{{ icon('check', 'w-5 h-5 text-emerald-500') }}
{% else %}
{{ icon('close', 'w-5 h-5 text-red-500') }}
{% endif %}
{% endif %}
{% for training in assignment.jobProfile.requiredTrainings %}
-
{{ training.name }} absolviert
{% if teamer.trainingAttendance(training) %}
{{ icon('check', 'w-5 h-5 text-emerald-500') }}
{% else %}
{{ icon('close', 'w-5 h-5 text-red-500') }}
{% endif %}
{% endfor %}
{{ form_start(form) }}
{% if form.confirmPickup is defined %}
{{ form_row(form.confirmPickup) }}
{% endif %}
{{ form_rest(form) }}
{{ form_end(form) }}