20 lines
533 B
Twig
20 lines
533 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Benutzeraccount sperren{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ form_start(form) }}
|
|
<h2 class="font-bold text-lg pb-4">
|
|
Teamer:in {{ teamer }}
|
|
</h2>
|
|
<div class="flex flex-col space-y-4 pb-4">
|
|
{{ form_row(form.disabledReason) }}
|
|
{{ form_row(form.disabledReasonInternal) }}
|
|
</div>
|
|
<button type="submit" class="btn bg-red-500 text-white">
|
|
Sperren
|
|
</button>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|