details_dateien.html 381 B

12345678910111213141516
  1. <table class="table table-striped table-bordered">
  2. <thead>
  3. <tr>
  4. <th>Datum</th>
  5. <th>Dateiname</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. {% for row in files %}
  10. <tr>
  11. <td></td>
  12. <td><a href="/files/?name={{ row }}" hx-disable="true">{{ row }}</a></td>
  13. </tr>
  14. {% endfor %}
  15. </tbody>
  16. </table>