diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-07-28 09:41:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-28 09:41:29 +0200 |
commit | ad5f47adbaee1eef85e90950ab8a45fe82959924 (patch) | |
tree | d23a186661db00d36cb2b2287a7bf890fbc62cfb /tpl/default/configure.html | |
parent | 8fdd65b88412a0db28c723a486650c434fe5668c (diff) | |
parent | 7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397 (diff) | |
download | Shaarli-ad5f47adbaee1eef85e90950ab8a45fe82959924.tar.gz Shaarli-ad5f47adbaee1eef85e90950ab8a45fe82959924.tar.zst Shaarli-ad5f47adbaee1eef85e90950ab8a45fe82959924.zip |
Merge pull request #687 from ArthurHoaro/web-thumb
Use web-thumbnailer to retrieve thumbnails
Diffstat (limited to 'tpl/default/configure.html')
-rw-r--r-- | tpl/default/configure.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tpl/default/configure.html b/tpl/default/configure.html index a63c7ad3..42e32230 100644 --- a/tpl/default/configure.html +++ b/tpl/default/configure.html | |||
@@ -242,6 +242,37 @@ | |||
242 | </div> | 242 | </div> |
243 | </div> | 243 | </div> |
244 | </div> | 244 | </div> |
245 | <div class="pure-g"> | ||
246 | <div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile}"> | ||
247 | <div class="form-label"> | ||
248 | <label for="enableThumbnails"> | ||
249 | <span class="label-name">{'Enable thumbnails'|t}</span><br> | ||
250 | <span class="label-desc"> | ||
251 | {if="! $gd_enabled"} | ||
252 | {'You need to enable the extension <code>php-gd</code> to use thumbnails.'|t} | ||
253 | {elseif="$thumbnails_enabled"} | ||
254 | <a href="?do=thumbs_update">{'Synchronize thumbnails'|t}</a> | ||
255 | {/if} | ||
256 | </span> | ||
257 | </label> | ||
258 | </div> | ||
259 | </div> | ||
260 | <div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}"> | ||
261 | <div class="form-input"> | ||
262 | <select name="enableThumbnails" id="enableThumbnails" class="align"> | ||
263 | <option value="all" {if="$thumbnails_mode=='all'"}selected{/if}> | ||
264 | {'All'|t} | ||
265 | </option> | ||
266 | <option value="common" {if="$thumbnails_mode=='common'"}selected{/if}> | ||
267 | {'Only common media hosts'|t} | ||
268 | </option> | ||
269 | <option value="none" {if="$thumbnails_mode=='none'"}selected{/if}> | ||
270 | {'None'|t} | ||
271 | </option> | ||
272 | </select> | ||
273 | </div> | ||
274 | </div> | ||
275 | </div> | ||
245 | <div class="center"> | 276 | <div class="center"> |
246 | <input type="submit" value="{'Save'|t}" name="save"> | 277 | <input type="submit" value="{'Save'|t}" name="save"> |
247 | </div> | 278 | </div> |