details_buchungen.html 780 B

1234567891011121314151617181920212223242526
  1. <table class="table table-striped table-bordered">
  2. <thead>
  3. <tr>
  4. <th>Fahrzeug</th>
  5. <th>Rechnungsnr.</th>
  6. <th>Rechnungsdatum</th>
  7. <th>Beschreibung</th>
  8. <th>Betrag</th>
  9. <th>Offen</th>
  10. <th>Benutzer</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. {% for row in forderung_belege %}
  15. <tr>
  16. <td>{{ row.Fahrzeug_Nr }}</td>
  17. <td>{{ row.Beleg_Nr }}</td>
  18. <td>{{ row.Beleg_Datum|date_format }}</td>
  19. <td>{{ row.Beleg_Beschreibung }}</td>
  20. <td class="text-end">{{ row.Betrag|number_format }}</td>
  21. <td>{{ row.Status }}</td>
  22. <td>{{ row.Benutzer }}</td>
  23. </tr>
  24. {% endfor %}
  25. </tbody>
  26. </table>