diff options
Diffstat (limited to 'client/html/post_upload.tpl')
| -rw-r--r-- | client/html/post_upload.tpl | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/client/html/post_upload.tpl b/client/html/post_upload.tpl index 0dc4f0b..c256e55 100644 --- a/client/html/post_upload.tpl +++ b/client/html/post_upload.tpl @@ -7,7 +7,7 @@ <span class='skip-duplicates control-checkbox'> <%= ctx.makeCheckbox({ - text: 'Skip duplicates', + text: 'Skip duplicate', name: 'skip-duplicates', checked: false, }) %> @@ -17,10 +17,25 @@ <%= ctx.makeCheckbox({ text: 'Copy tags to originals', name: 'copy-tags-to-originals', + }) %> + </span> + + <span class='always-upload-similar'> + <%= ctx.makeCheckbox({ + text: 'Force upload similar', + name: 'always-upload-similar', checked: false, }) %> </span> + <span class='pause-remain-on-error'> + <%= ctx.makeCheckbox({ + text: 'Pause on error', + name: 'pause-remain-on-error', + checked: true, + }) %> + </span> + <div class='tags'> <%= ctx.makeTextInput({}) %> </div> |