| 1234567891011121314151617181920212223242526 |
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>Fahrzeug</th>
- <th>Rechnungsnr.</th>
- <th>Rechnungsdatum</th>
- <th>Beschreibung</th>
- <th>Betrag</th>
- <th>Offen</th>
- <th>Benutzer</th>
- </tr>
- </thead>
- <tbody>
- {% for row in forderung_belege %}
- <tr>
- <td>{{ row.Fahrzeug_Nr }}</td>
- <td>{{ row.Beleg_Nr }}</td>
- <td>{{ row.Beleg_Datum|date_format }}</td>
- <td>{{ row.Beleg_Beschreibung }}</td>
- <td class="text-end">{{ row.Betrag|number_format }}</td>
- <td>{{ row.Status }}</td>
- <td>{{ row.Benutzer }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
|