diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-05 13:19:01 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-05 13:19:01 +0200 |
| commit | a9f4d77593640388eb07dfdf0d4e3a0bf17416a2 (patch) | |
| tree | 74167377d91aec45a56125e811f3766b8f181f8e /views | |
| parent | e443b704c5f45b5e9cfdec762f837a0981cffe97 (diff) | |
interface to move files to other threads
Diffstat (limited to 'views')
| -rw-r--r-- | views/partials/files.ejs | 2 | ||||
| -rw-r--r-- | views/partials/settings.ejs | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/views/partials/files.ejs b/views/partials/files.ejs index 0ad8317..e785099 100644 --- a/views/partials/files.ejs +++ b/views/partials/files.ejs @@ -1,7 +1,7 @@ <table class="files" id="files"> <script class="template" type="text/html"> <tr class="file"> - <td> + <td class="name"> <a href="{{link}}" title="{{id}}" class="file">{{filename}}</a> </td> <td class="{{date_class}}"> diff --git a/views/partials/settings.ejs b/views/partials/settings.ejs index df19981..65fdf43 100644 --- a/views/partials/settings.ejs +++ b/views/partials/settings.ejs @@ -79,10 +79,20 @@ <div id="right_side"> + <div class='move_files_select'> + <select name="thread"> + <option value="">Move files to another thread</option> + </select> + <button id="move_files">move</button> + </div> + <table class="files" id="settings_files"> <script class="settingsFilesTemplate" type="text/html"> <tr class="file"> <td> + <input type="checkbox" name="file_id" value="{{id}}"> + </td> + <td class='name'> <a href="{{link}}" class="file">{{filename}}</a> </td> <td class="{{date_class}}"> |
