Dateiverwaltung für die WebBox
ulrich
2021-01-17 96a10fcfb1a651ca96960fb9793e1761d3dc16e6
commit | author | age
4f01b8 1       <table class="table table-hover table-sm table-responsive tableBodyScroll">
U 2         <thead>
39e714 3           <tr class="datei-zeile-ueberschrift">
4f01b8 4             <th colspan="2">Name</th>
U 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