| 1234567891011121314151617181920212223242526272829303132333435 |
- <div class="tabs">
- <div class="tab">Diese Rechnung</div>
- <div class="tab">Alle offenen Rechnungen</div>
- <div class="tab">Dieses Fahrzeug</div>
- <div class="tab active">Debitor Historie</div>
- </div>
- <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>
|