details_kommentare.html 478 B

123456789101112131415161718192021222324252627
  1. <!--
  2. <br>
  3. <br>
  4. <h3>Kommentare</h3>
  5. <table class="table table-striped table-bordered">
  6. <thead>
  7. <tr>
  8. <th>Timestamp</th>
  9. <th>Name</th>
  10. <th>Rolle</th>
  11. <th>Kommentar</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% for row in forderung_kommentar %}
  16. <tr>
  17. <td>{{ row.Timestamp|date_format }}</td>
  18. <td>{{ row.Name }}</td>
  19. <td>{{ row.Rolle }}</td>
  20. <td>{{ row.Kommentar or '' }}</td>
  21. </tr>
  22. {% endfor %}
  23. </tbody>
  24. </table>
  25. -->