{% extends 'administrative/layout.html.twig' %} {% block title %}Einsatzübersicht{% endblock %} {% block content %}

Einsatzübersicht

{% if filterDto.active %} Reset {% endif %}
{% if is_granted('ROLE_ADMIN') %} {% endif %} {% for assignment in pagination %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% else %} {% endfor %}
{{ knp_pagination_sortable(pagination, 'ID', ['assignment.id']) }} Status {{ knp_pagination_sortable(pagination, 'Einsatz­zeitraum', ['destination.dateFrom', 'assignment.id']) }} {{ knp_pagination_sortable(pagination, 'Destination', 'destination.product') }} {{ knp_pagination_sortable(pagination, 'Jobprofil', 'job_profile.name') }} {{ knp_pagination_sortable(pagination, 'Busbegleitung', 'assignment.pickup') }} Bewerbungen Einteilungen
{{ assignment.id }}
{% if assignment.status == constant('App\\Entity\\Assignment::STATUS_DRAFT') %} {{ icon('edit', 'w-4 h-4') }} {% elseif assignment.status == constant('App\\Entity\\Assignment::STATUS_CALLED_OFF') %} {{ icon('no-symbol', 'w-4 h-4') }} {% elseif assignment.staffingStatus == constant('App\\Entity\\Assignment::STATUS_STAFFED') %} {% elseif assignment.staffingStatus == constant('App\\Entity\\Assignment::STATUS_PARTLY_STAFFED') %} {% elseif assignment.staffingStatus == constant('App\\Entity\\Assignment::STATUS_STAFFING') %} {% else %} {% endif %}
{{ assignment.destination.dateFrom|date('d.m.Y') }} -
{{ assignment.destination.dateTo|date('d.m.Y') }}
{{ icon('flag-' ~ assignment.destination.country, 'w-5 h-5 shrink-0') }}
{{ assignment.destination.hotel }}
{{ assignment.jobProfile.name }} {% if assignment.pickup %} {% set pickup = assignment.destination.pickup(assignment.pickup) %} {% if pickup %} ab {{ pickup.city }}
{{ pickup.time }}
{% else %} ungültiger Zustieg {% endif %} {% else %} - {% endif %}
{{ assignment.applications|length }} {{ assignment.activeDispositions|length }}/{{ assignment.availableDispositions }}
    {% for disposition in assignment.activeDispositions %}
  • {{ disposition.teamer }}
  • {% endfor %}
{% if is_granted('CALL_OFF', assignment) %} {% endif %} duplizieren {% if is_granted('EDIT', assignment) %} bearbeiten {% endif %} {% if is_granted('PUBLISH', assignment) %} {% endif %}
Keine Daten...
{{ knp_pagination_render(pagination) }}
{{ icon('no-symbol', 'w-4 h-4 mr-1') }} = abgesagt
= unbesetzt
= voll besetzt
= teilweise besetzt
= in Bewerbung
Neu {% endblock %}