| 12345678910111213141516171819202122232425262728 |
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>Kunde_Nr</th>
- <th>Mahnung_Nr</th>
- <th>Mahndatum</th>
- <th>Mahnstufe</th>
- <th>Rechnung_Nr</th>
- <th>Rechnung_Datum</th>
- <th>Betrag</th>
- <th>Offen</th>
- </tr>
- </thead>
- <tbody>
- {% for row in forderung_mahnung %}
- <tr>
- <td>{{ row.Kunde_Nr }}</td>
- <td>{{ row.Mahnung_Nr }}</td>
- <td>{{ row.Mahndatum|date_format }}</td>
- <td>{{ row.Mahnstufe }}</td>
- <td>{{ row.Rechnung_Nr }}</td>
- <td>{{ row.Rechnung_Datum|date_format }}</td>
- <td class="text-end">{{ row.Betrag|number_format }}</td>
- <td class="text-end">{{ row.Offen|number_format }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
|