blob: 02f32af4b913019e5bbcd49ac03e85cbad5d632f (
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
52
53
54
55
56
57
58
59
|
@import java.util.ArrayList
@args (ArrayList files, String path)
@css => {
<link href="/css/files.css" rel="stylesheet">
}
@js => {
<script>const path = "@path";</script>
<script src="/js/imagePreview.js"></script>
<script src="/js/files.js"></script>
}
@layout.template(files.size() + " Files", css, js) -> {
<div class="drop" id="drop">
<h2>/@path</h2>
<table id="table">
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Last modified</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<tr data-href="../">
<td>../</td>
<td></td>
<td></td>
<td></td>
</tr>
@for (String[] fileArray : files) {
@if (fileArray[3] == "true") {
<tr data-href="@fileArray[0]">
<td>@fileArray[0]</td>
<td>@fileArray[1]</td>
<td>@fileArray[2]</td>
<td>
<button class="delete"><i class="icon ion-md-trash"></i></button>
</td>
</tr>
} else {
<tr data-path="@fileArray[0]">
<td>@fileArray[0]</td>
<td>@fileArray[1]</td>
<td>@fileArray[2]</td>
<td>
<button class="delete"><i class="icon ion-md-trash"></i></button>
</td>
</tr>
}
}
</tbody>
</table>
</div>
}
|