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

Einsatzübersicht ID {{ assignment.id}}

{% include '_partials/_assignment_info_compact.html.twig' %}
{% if is_granted('ROLE_ADMIN') %}

Bewerbungen

{% for application in applications %} {% else %} {% endfor %}
Name Status Zustieg Wünsche
{{ ('label.application.status.' ~ application.status)|trans }} {% if application.pickup %} {{ application.pickup|bpn_pickup_label }} {% else %} - {% endif %} {{ application.requests|default('-')|nl2br }}
{% if is_granted('DISPOSE', application) %} {% endif %} {% if is_granted('STATUS', application) %} {% endif %} {% if is_granted('DELETE', application) %} {% endif %}
Es liegen keine Bewerbungen vor...
{% endif %}

Einteilungen

{% for disposition in dispositions %} {% else %} {% endfor %}
Name Status Zustieg Anmerkungen Absprachen
{{ ('label.disposition.status.' ~ disposition.status)|trans }} {% if disposition.pickup %} {{ disposition.pickup|bpn_pickup_label }} {% else %} - {% endif %} {% if disposition.calledOffReason %} {{ disposition.calledOffReason|default('-')|nl2br }} {% else %} {{ disposition.remarks|default('-')|nl2br }} {% endif %} {{ disposition.specialAgreements|default('-')|nl2br }}
{% if is_granted('ADMIN_DOCUMENT_UPLOAD', disposition) %} {% endif %} {% if is_granted('CALL_OFF', disposition) %} {% endif %} {% if is_granted('DELETE', disposition) %} {% endif %}
Es gibt noch keine Einteilungen...
zurück
{% endblock %}