Files
stiftung-management-system/app/templates/stiftung/unterstuetzungen_pdf.html
2025-09-06 18:31:54 +02:00

32 lines
922 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>