details_mahnungen.html 889 B

12345678910111213141516171819202122232425262728
  1. <table class="table table-striped table-bordered">
  2. <thead>
  3. <tr>
  4. <th>Kunde_Nr</th>
  5. <th>Mahnung_Nr</th>
  6. <th>Mahndatum</th>
  7. <th>Mahnstufe</th>
  8. <th>Rechnung_Nr</th>
  9. <th>Rechnung_Datum</th>
  10. <th>Betrag</th>
  11. <th>Offen</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% for row in forderung_mahnung %}
  16. <tr>
  17. <td>{{ row.Kunde_Nr }}</td>
  18. <td>{{ row.Mahnung_Nr }}</td>
  19. <td>{{ row.Mahndatum|date_format }}</td>
  20. <td>{{ row.Mahnstufe }}</td>
  21. <td>{{ row.Rechnung_Nr }}</td>
  22. <td>{{ row.Rechnung_Datum|date_format }}</td>
  23. <td class="text-end">{{ row.Betrag|number_format }}</td>
  24. <td class="text-end">{{ row.Offen|number_format }}</td>
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>