| 123456789101112131415161718192021222324252627 |
- <!--
- <br>
- <br>
- <h3>Kommentare</h3>
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>Timestamp</th>
- <th>Name</th>
- <th>Rolle</th>
- <th>Kommentar</th>
- </tr>
- </thead>
- <tbody>
- {% for row in forderung_kommentar %}
- <tr>
- <td>{{ row.Timestamp|date_format }}</td>
- <td>{{ row.Name }}</td>
- <td>{{ row.Rolle }}</td>
- <td>{{ row.Kommentar or '' }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- -->
|