Dateiverwaltung für die WebBox
ulrich
2017-02-27 305573a68785ff329bc0f3c9b28ba738bcb58e46
commit | author | age
a3d410 1 <table class="table table-hover table-sm table-responsive tableBodyScroll">
U 2   <thead>
3     <tr>
4       <th colspan="2">Name</th>
5       <th>Gr&ouml;&szlig;e</th>
6       <th>Art</th>
7       <th>ge&auml;ndert</th>
8     </tr>
9   </thead>
10   <tbody>
11   {{#files}}
12     <tr class="datei-zeile">
13       <td class="datei-elem"><i class="fa {{ typeClass }}"></i></td>
14       <td class="dateiname">{{ fileName }}</td>
15       <td>{{ fr.length }}</td>
16       <td>&nbsp;</td>
17       <td>{{ fr.lastModified }}</td>
18     </tr>
19   {{/files}}
20   </tbody>
21 </table>