Dateiverwaltung für die WebBox
ulrich
2021-01-16 beb124ae624354acc698781fcc3f72d61efab300
commit | author | age
4f01b8 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="{{ typeClass }}"></i></td>
14             <td class="dateiname">{{ fileName }}</td>
15             <td>{{ fileSize }}</td>
16             <td>{{ fr.mimetype }}</td>
17             <td>{{ fileDate }}</td>
18           </tr>
19         {{/files}}
20         </tbody>
21       </table>
22