blob: 2c4a7ffc15b69bb256bf3f163afb83ce2643d342 (
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
|
@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/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>
</tr>
</thead>
<tbody>
<tr>
<td><a class="filename" href="../">../</a></td>
<td><a class="filename" href="../"></a></td>
<td><a class="filename" href="../"></a></td>
</tr>
@for (String[] fileArray : files) {
<tr>
<td><a class="filename" href="@fileArray[0]">@fileArray[0]</a></td>
<td><a class="filename" href="@fileArray[0]">@fileArray[1]</a></td>
<td><a class="filename" href="@fileArray[0]">@fileArray[2]</a></td>
</tr>
}
</tbody>
</table>
</div>
}
|