details_mahnungen.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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>Mahnung Nr.</th>
  12. <th>Mahndatum</th>
  13. <th>Mahnstufe</th>
  14. <th>Belegnr.</th>
  15. <th>Belegdatum</th>
  16. <th>Betrag</th>
  17. <th>Offen</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. {% for row in forderungen_mahnungen %}
  22. <tr>
  23. <td></td>
  24. <td>{{ row.Mahnung_Nr }}</td>
  25. <td>{{ row.Mahnung_Datum|date_format }}</td>
  26. <td>{{ row.Mahnstufe }}</td>
  27. <td>{{ row.Beleg_Nr }}</td>
  28. <td>{{ row.Beleg_Datum|date_format }}</td>
  29. <td class="text-end">{{ row.Betrag|number_format }}</td>
  30. <td>J</td>
  31. </tr>
  32. {% endfor %}
  33. </tbody>
  34. </table>