diff options
Diffstat (limited to 'tpl/default/configure.html')
-rw-r--r-- | tpl/default/configure.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/tpl/default/configure.html b/tpl/default/configure.html index dca9503b..9711d151 100644 --- a/tpl/default/configure.html +++ b/tpl/default/configure.html | |||
@@ -259,8 +259,17 @@ | |||
259 | </div> | 259 | </div> |
260 | <div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}"> | 260 | <div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}"> |
261 | <div class="form-input"> | 261 | <div class="form-input"> |
262 | <input type="checkbox" name="enableThumbnails" id="enableThumbnails" | 262 | <select name="enableThumbnails" id="enableThumbnails" class="align"> |
263 | {if="$thumbnails_enabled"}checked{/if} {if="!$gd_enabled"}disabled{/if} /> | 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> | ||
264 | </div> | 273 | </div> |
265 | </div> | 274 | </div> |
266 | </div> | 275 | </div> |