Dateiverwaltung für die WebBox
ulrich
2021-01-20 9350c960b07404690ed747ed7725e94313c629fb
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 class="datei-zeile-ueberschrift">
            <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="{{ typeClass }}"></i></td>
            <td class="dateiname">{{ fileName }}</td>
            <td>{{ fileSize }}</td>
            <td>{{ fr.mimetype }}</td>
            <td>{{ fileDate }}</td>
          </tr>
        {{/files}}
        </tbody>
      </table>