- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>Datum</th>
- <th>Dateiname</th>
- </tr>
- </thead>
- <tbody>
- {% for row in files %}
- <tr>
- <td></td>
- <td><a href="/files/?name={{ row }}" hx-disable="true">{{ row }}</a></td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
|