| + | Name | -+ | + Zustieg + | +Wünsche | -+ | Status | -+ | + {{ application.pickup|bpn_pickup_label|default('-') }} |
{{ application.requests|nl2br|default('-') }}
@@ -55,35 +62,36 @@
{% if is_granted('DISPOSE', application) %}
{% endif %}
{% if is_granted('STATUS', application) %}
-
{% endif %}
{% if is_granted('DELETE', application) %}
-
{% endif %}
@@ -108,16 +116,16 @@
+ {% if form.pickup is defined %}
+ {{ form_row(form.pickup) }}
+ {% endif %}
{% if form.confirmPickup is defined %}
{{ form_row(form.confirmPickup) }}
{% endif %}
diff --git a/templates/teamer/assignment/detail.html.twig b/templates/teamer/assignment/detail.html.twig
index 22598c9..f605aa6 100644
--- a/templates/teamer/assignment/detail.html.twig
+++ b/templates/teamer/assignment/detail.html.twig
@@ -16,7 +16,7 @@
{% if disposition is not null %}
{% include '_partials/_infobox.html.twig' with {
- 'message': 'Du wurdest am ' ~ disposition.createdAt|date('d.m.Y') ~ 'für diesen Einsatz eingeteilt.'
+ 'message': 'Du wurdest am ' ~ disposition.createdAt|date('d.m.Y') ~ ' für diesen Einsatz eingeteilt.'
} %}
{% elseif application is not null %}
{% if application.status == constant('App\\Entity\\Application::STATUS_REJECTED') %}
@@ -35,7 +35,7 @@
{% endif %}
{% else %}
{% include '_partials/_infobox.html.twig' with {
- 'message': 'Du hast dich am ' ~ application.createdAt|date('d.m.Y') ~ 'auf diesen Einsatz beworben.'
+ 'message': 'Du hast dich am ' ~ application.createdAt|date('d.m.Y') ~ ' auf diesen Einsatz beworben.'
} %}
|
|---|