diff options
author | Marvin Borner | 2019-04-18 00:16:42 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-18 00:16:42 +0200 |
commit | 663ca2f73d88072f35dc33a6b85a3742a8f62e64 (patch) | |
tree | a463667902898a7d24bc109740af726a83319485 /src/main/resources/views | |
parent | f71843df94f1d89dbec7283854dddb76e35598dc (diff) |
Added icons defining the type of the file
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/resources/views')
-rw-r--r-- | src/main/resources/views/files.rocker.html | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html index 0e42891..a31f6bb 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -28,10 +28,12 @@ <col/> <col/> <col/> + <col/> </colgroup> <thead> <tr> + <th data-asc="true"></th> <th data-asc="true">Name</th> <th data-asc="true">Size</th> <th data-asc="true">Last modified</th> @@ -39,6 +41,7 @@ <th data-asc="true">Delete</th> </tr> <tr data-href="../"> + <td></td> <td>../</td> <td></td> <td></td> @@ -54,9 +57,19 @@ } else { <tr data-path="@fileArray[0]"> } + + <!-- TODO: Add more icons (more specific file types) --> + @if (fileArray[4] == "true") { + <td><i class="icon ion-md-folder"></i></td> + } else if (fileArray[3] == "false") { + <td><i class="icon ion-md-code"></i></td> + } else { + <td><i class="icon ion-md-document"></i></td> + } + <td>@fileArray[0]</td> - <td data-size="@fileArray[4]">@fileArray[1]</td> - <td data-date="@fileArray[5]">@fileArray[2]</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> |