Files
myep-team/templates/_partials/_teamer_license_info.html.twig
2026-03-15 12:42:28 +01:00

33 lines
1.1 KiB
Twig

<h3 class="text-lg font-bold">
Lizenzen
</h3>
<ul class="pb-4 divide-y divide-gray-200">
{% if teamer.driverLicenseVerified %}
<li class="py-2">
Führerschein
</li>
{% endif %}
{% for license in teamer.licenses %}
<li class="py-2">
<div class="flex items-center justify-between">
<span class="flex-1">{{ license.type|license_label }}</span>
<div class="flex items-center space-x-2">
{% if is_granted('DOWNLOAD', license.certificate) %}
<a href="{{ path('app_common_download', { 'uuid': license.certificate.uuid }) }}"
target="_blank"
title="Download Nachweis">
{{ icon('download', 'w-4 h-4') }}
</a>
{% endif %}
<span>{{ license.date|date('m/Y') }}</span>
</div>
</div>
</li>
{% endfor %}
{% if not teamer.driverLicenseVerified and teamer.licenses | length == 0 %}
<li class="py-2">
-
</li>
{% endif %}
</ul>