27 lines
1.1 KiB
Twig
27 lines
1.1 KiB
Twig
<ul class="list-disc pl-4 pb-4">
|
|
{% if assignment.pickup and assignment.effectivePickupDate %}
|
|
<li>
|
|
<div class="flex items-center space-x-2">
|
|
<span>Busbegleitung ab {{ assignment.pickup|bpn_pickup_label }} am {{ assignment.effectivePickupDate|date('d.m.Y') }}</span>
|
|
{% 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 %}
|
|
</div>
|
|
</li>
|
|
{% endif %}
|
|
{% for training in assignment.jobProfile.requiredTrainings %}
|
|
<li>
|
|
<div class="flex items-center space-x-2">
|
|
<span>{{ training.name }} absolviert</span>
|
|
{% if teamer.trainingAttendance(training) %}
|
|
{{ icon('check', 'w-5 h-5 text-emerald-500') }}
|
|
{% else %}
|
|
{{ icon('close', 'w-5 h-5 text-red-500') }}
|
|
{% endif %}
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|