aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/files.rocker.html
diff options
context:
space:
mode:
authorMarvin Borner2019-04-15 14:46:54 +0200
committerMarvin Borner2019-04-15 14:46:54 +0200
commit481426f28b548ba64097895d0604585e6f722480 (patch)
tree4212f99a34e547b1df02e6007e08b34fc66e7f6d /src/main/resources/views/files.rocker.html
parenta0f7bd6052fa28dd789de4239bf07ff227574963 (diff)
Added file delete buttons
Diffstat (limited to 'src/main/resources/views/files.rocker.html')
-rw-r--r--src/main/resources/views/files.rocker.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html
index 96676ed..a50c0b2 100644
--- a/src/main/resources/views/files.rocker.html
+++ b/src/main/resources/views/files.rocker.html
@@ -20,6 +20,7 @@
<th>Name</th>
<th>Size</th>
<th>Last modified</th>
+ <th>Delete</th>
</tr>
</thead>
@@ -28,6 +29,7 @@
<td>../</td>
<td></td>
<td></td>
+ <td></td>
</tr>
@for (String[] fileArray : files) {
@@ -36,12 +38,18 @@
<td>@fileArray[0]</td>
<td>@fileArray[1]</td>
<td>@fileArray[2]</td>
+ <td>
+ <button class="delete">&times;</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">&times;</button>
+ </td>
</tr>
}
}