feat: streamlined teamer info modals, internal teamer remarks

This commit is contained in:
Björn Fromme
2025-02-10 18:14:19 +01:00
parent 0b743172e7
commit 9192e8220d
13 changed files with 201 additions and 86 deletions
@@ -41,7 +41,10 @@
<button type="button"
class="flex items-center space-x-1"
title="Teamer:inneninfo {{ application.teamer }}"
hx-get="{{ path('app_admin_application_info', { 'uuid': application.uuid }) }}"
hx-get="{{ path('app_administrative_teamer_info', {
'uuid': application.teamer.uuid,
'r': return_url()
}) }}"
hx-target="body"
hx-swap="beforeend">
<span>{{ application.teamer }}</span>
@@ -68,7 +71,9 @@
<button type="button"
class="text-green-500"
title="einteilen"
hx-get="{{ path('app_admin_application_dispose', { 'uuid': application.uuid }) }}"
hx-get="{{ path('app_admin_application_dispose', {
'uuid': application.uuid
}) }}"
hx-target="body"
hx-swap="beforeend">
{{ icon('check') }}
@@ -78,7 +83,9 @@
<button type="button"
class="text-primary"
title="Bewerbungsstatus bearbeiten"
hx-get="{{ path('app_admin_application_status', { 'uuid': application.uuid }) }}"
hx-get="{{ path('app_admin_application_status', {
'uuid': application.uuid
}) }}"
hx-target="body"
hx-swap="beforeend">
{{ icon('edit') }}
@@ -88,7 +95,9 @@
<button type="button"
class="text-red-500"
title="Bewerbung löschen"
hx-get="{{ path('app_admin_application_delete', { 'uuid': application.uuid }) }}"
hx-get="{{ path('app_admin_application_delete', {
'uuid': application.uuid
}) }}"
hx-target="body"
hx-swap="beforeend">
{{ icon('delete') }}