details_buchungen.html 994 B

123456789101112131415161718192021222324252627282930313233
  1. <div class="tabs">
  2. <div class="tab">Diese Rechnung</div>
  3. <div class="tab">Alle offenen Rechnungen</div>
  4. <div class="tab">Dieses Fahrzeug</div>
  5. <div class="tab active">Debitor Historie</div>
  6. </div>
  7. <table class="table table-striped table-bordered">
  8. <thead>
  9. <tr>
  10. <th>Fahrzeug</th>
  11. <th>Rechnungsnr.</th>
  12. <th>Rechnungsdatum</th>
  13. <th>Beschreibung</th>
  14. <th>Betrag</th>
  15. <th>Offen</th>
  16. <th>Benutzer</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for row in forderung_belege %}
  21. <tr>
  22. <td>{{ row.Fahrzeug_Nr }}</td>
  23. <td>{{ row.Beleg_Nr }}</td>
  24. <td>{{ row.Beleg_Datum|date_format }}</td>
  25. <td>{{ row.Beleg_Beschreibung }}</td>
  26. <td class="text-end">{{ row.Betrag|number_format }}</td>
  27. <td>{{ row.Status }}</td>
  28. <td>{{ row.Benutzer }}</td>
  29. </tr>
  30. {% endfor %}
  31. </tbody>
  32. </table>