aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/files.rocker.html
diff options
context:
space:
mode:
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>
}
}