Dateiverwaltung für die WebBox
ulrich
2017-02-25 a3d410776dcaf84ab2a0cb22eebb6e75a3251033
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&ouml;&szlig;e</th>
      <th>Art</th>
      <th>ge&auml;ndert</th>
    </tr>
  </thead>
  <tbody>
  {{#files}}
    <tr class="datei-zeile">
      <td class="datei-elem"><i class="fa {{ typeClass }}"></i></td>
      <td class="dateiname">{{ fileName }}</td>
      <td>{{ fr.length }}</td>
      <td>&nbsp;</td>
      <td>{{ fr.lastModified }}</td>
    </tr>
  {{/files}}
  </tbody>
</table>