blob: 3c4561edc55dafa91d993f21c4b65f99abfbe47e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<h1>Images</h1>
<div class="alert alert-warning">
Die Löschfunktion entfernt lediglich den Datenbankeintrag. Bitte <b>löschen Sie die zugehörige Datei</b>
aus dem Storage-Verzeichnis (Spalte Pfad)
</div>
<form method="post" action="?do=images">
<input type="hidden" name="token" value="{{token}}">
<input type="hidden" name="action" value="delete">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Größe</th>
<th>Erstellt</th>
<th>Läuft ab</th>
<th>Pfad</th>
<th></th>
</tr>
</thead>
<tbody>
{{#list}}
<tr>
<td title="{{description}}">
{{displayname}}
<div class="small">{{imageversionid}}</div>
</td>
<td class="slx-nowrap">
{{filesize_s}}
</td>
<td class="slx-nowrap">
{{createtime_s}}
</td>
<td class="slx-nowrap">
{{expiretime_s}}
</td>
<td class="small">
{{filepath}}
</td>
<td>
<button type="submit" name="image" value="{{imageversionid}}" class="btn btn-xs btn-danger"
onclick="return confirm('Wirklich?')">
<span class="glyphicon glyphicon-remove"></span>
</button>
</td>
</tr>
{{/list}}
</tbody>
</table>
</form>
|