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.html37
1 files changed, 31 insertions, 6 deletions
diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html
index f3f816a..56cfc88 100644
--- a/src/main/resources/views/files.rocker.html
+++ b/src/main/resources/views/files.rocker.html
@@ -31,6 +31,7 @@
<col/>
<col/>
<col/>
+ <col/>
</colgroup>
<thead>
@@ -40,6 +41,7 @@
<th data-asc="true">Size</th>
<th data-asc="true">Last modified</th>
<th data-asc="true">Share</th>
+ <th data-asc="true">Download</th>
<th data-asc="true">Delete</th>
</tr>
<tr data-href="../">
@@ -49,6 +51,7 @@
<td></td>
<td></td>
<td></td>
+ <td></td>
</tr>
</thead>
@@ -62,19 +65,41 @@
<!-- TODO: Add more icons (more specific file types) -->
@if (fileArray[4] == "true") {
- <td><i class="icon ion-md-folder"></i></td>
+ <td>
+ <i class="icon ion-md-folder"></i>
+ </td>
} else if (fileArray[3] == "false") {
- <td><i class="icon ion-md-code"></i></td>
+ <td>
+ <i class="icon ion-md-code"></i>
+ </td>
} else {
- <td><i class="icon ion-md-document"></i></td>
+ <td>
+ <i class="icon ion-md-document"></i>
+ </td>
}
- <td>@fileArray[0]</td>
- <td data-size="@fileArray[5]">@fileArray[1]</td>
- <td data-date="@fileArray[6]">@fileArray[2]</td>
+ <td>
+ @fileArray[0]
+ </td>
+
+ <td data-size="@fileArray[5]">
+ @fileArray[1]
+ </td>
+
+ <td data-date="@fileArray[6]">
+ @fileArray[2]
+ </td>
+
<td>
<button class="share"><i class="icon ion-md-share"></i></button>
</td>
+
+ <td>
+ <button class="downloadButton">
+ <a class="download" download="@fileArray[0]" href="@fileArray[0]?raw"><i class="icon ion-md-download"></i></a>
+ </button>
+ </td>
+
<td>
<button class="delete"><i class="icon ion-md-trash"></i></button>
</td>