feat: add comprehensive GitHub workflow and development tools

This commit is contained in:
Stiftung Development
2025-09-06 18:31:54 +02:00
commit ab23d7187e
10224 changed files with 2075210 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<!doctype html>
<html><head><meta charset="utf-8"><style>
body{font-family:DejaVu Sans, Arial, sans-serif;font-size:12px}
table{width:100%;border-collapse:collapse}
th,td{border:1px solid #999;padding:6px;text-align:left}
h1{font-size:18px;margin-bottom:10px}
</style></head>
<body>
<h1>Destinatärunterstützungen geplante Zahlungen</h1>
<table>
<thead>
<tr>
<th>Destinatär</th><th>Bank</th><th>IBAN</th><th>Betrag</th><th>Fällig am</th><th>Status</th><th>Beschreibung</th>
</tr>
</thead>
<tbody>
{% for u in unterstuetzungen %}
<tr>
<td>{{ u.destinataer.get_full_name }}</td>
<td>{{ u.konto.bank_name }}</td>
<td>{{ u.konto.iban }}</td>
<td>€{{ u.betrag|floatformat:2 }}</td>
<td>{{ u.faellig_am|date:"d.m.Y" }}</td>
<td>{{ u.get_status_display }}</td>
<td>{{ u.beschreibung }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body></html>