{% extends 'admin/layout.html.twig' %} {% block title %}Bewerbungsübersicht{% endblock %} {% block content %}
| {{ knp_pagination_sortable(pagination, 'Einsatzzeitraum', 'destination.dateFrom') }} | {{ knp_pagination_sortable(pagination, 'Destination', 'destination.product') }} | {{ knp_pagination_sortable(pagination, 'Jobprofil', 'job_profile.name') }} | {{ knp_pagination_sortable(pagination, 'Bus', 'destination.pickup') }} | {{ knp_pagination_sortable(pagination, 'Bewerber*in', 'teamer.lastName') }} | |
|---|---|---|---|---|---|
| {{ assignment.effectivePeriod.start|date('d.m.Y') }} - {{ assignment.effectivePeriod.end|date('d.m.Y') }} |
{{ icon('flag-' ~ assignment.destination.country, 'w-5 h-5 shrink-0') }}
{{ assignment.destination.product }}
{{ assignment.destination.hotel }} |
{{ assignment.jobProfile.name }} |
{{ assignment.pickup ? assignment.pickup|bpn_pickup_label : '-' }}
{{ assignment.effectivePickupDate ? assignment.effectivePickupDate|date('d.m.Y') : '' }} |
{{ application.teamer }} |
{% if assignment.pickup %}
{% if application.matchesPickup %}
{{ icon('bus', 'w-5 h-5 text-green-500 shrink-0') }}
{% else %}
{{ icon('bus', 'w-5 h-5 text-red-500 shrink-0') }}
{% endif %}
{% endif %}
{% set requiredTrainingsCount = assignment.jobProfile.requiredTrainings|length %}
{% if not application.matchesRequiredTrainings %}
{{ icon('alert', 'w-5 h-5 text-red-500 shrink-0') }}
{% endif %}
|
| Keine Daten... | |||||