feat: add comprehensive GitHub workflow and development tools
This commit is contained in:
31
app/templates/stiftung/unterstuetzungen_pdf.html
Normal file
31
app/templates/stiftung/unterstuetzungen_pdf.html
Normal 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>
|
||||
|
||||
Reference in New Issue
Block a user