diff options
author | Marvin Borner | 2019-04-21 18:34:48 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-21 18:34:48 +0200 |
commit | a5f26def08e100bf74e90d09298ad81e9224e249 (patch) | |
tree | 3dd897b3962c25204a7826d9de2c81e17a76ee5f /src/main/resources/views/files.rocker.html | |
parent | 191e1976d93aaf0143f84fda86a4805d3b7cede8 (diff) |
Added download button
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/resources/views/files.rocker.html')
-rw-r--r-- | src/main/resources/views/files.rocker.html | 37 |
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> |