1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <table class="table table-hover table-sm table-responsive tableBodyScroll">
| <thead>
| <tr>
| <th colspan="2">Name</th>
| <th>Größe</th>
| <th>Art</th>
| <th>geändert</th>
| </tr>
| </thead>
| <tbody>
| {{#files}}
| <tr class="datei-zeile">
| <td class="datei-elem"><i class="{{ typeClass }}"></i></td>
| <td class="dateiname">{{ fileName }}</td>
| <td>{{ fileSize }}</td>
| <td>{{ fr.mimetype }}</td>
| <td>{{ fileDate }}</td>
| </tr>
| {{/files}}
| </tbody>
| </table>
|
|