feat: financial data check for teamers, improved enforced checks logic

addresses #869at5rtp
This commit is contained in:
Björn Fromme
2026-08-10 18:06:25 +02:00
parent fd5d478a5c
commit 388ecf9603
22 changed files with 1196 additions and 195 deletions
@@ -0,0 +1,40 @@
{% extends 'teamer/layout.html.twig' %}
{% block title %}Honorardaten{% endblock %}
{% block content %}
{{ form_start(form) }}
<div class="max-w-2xl">
<h1 class="text-2xl font-bold pb-2">
Bankverbindung und Steuer-ID
</h1>
<p class="pb-6">
Damit wir dein Honorar auszahlen können, benötigen wir einmalig deine Steuer-ID und deine
Bankverbindung. Bitte ergänze die folgenden Angaben:
</p>
{% if not form.vars.valid %}
{% embed '_partials/_alert.html.twig' with { 'type': 'warning' } %}
{% block message %}
{% include '_partials/_form_errors.html.twig' with { 'form': form } %}
{% endblock %}
{% endembed %}
{% endif %}
<div class="flex flex-col space-y-4 pb-6">
{{ form_row(form.taxId) }}
{{ form_row(form.iban) }}
{{ form_row(form.bic) }}
{{ form_row(form.bank) }}
{{ form_row(form.holder) }}
</div>
<button type="submit" class="btn">
Speichern
</button>
</div>
{{ form_rest(form) }}
{{ form_end(form) }}
{% endblock %}