diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-16 16:58:44 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-16 16:58:44 +0100 |
| commit | 0a3b9a7b00fb2f9af562ba73fb543a5ea7967782 (patch) | |
| tree | 77d8cb688387e813d4f88b8e7744713f9f9f3871 /searx/templates/default/preferences.html | |
| parent | f3d7af33fd47372e7c572cc125d2c19f74a8ef3d (diff) | |
[enh] add image proxy toggle to preferences templates
Diffstat (limited to 'searx/templates/default/preferences.html')
| -rw-r--r-- | searx/templates/default/preferences.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/searx/templates/default/preferences.html b/searx/templates/default/preferences.html index 639877d47..1fa8d88b7 100644 --- a/searx/templates/default/preferences.html +++ b/searx/templates/default/preferences.html @@ -43,6 +43,15 @@ </p> </fieldset> <fieldset> + <legend>{{ _('Image proxy') }}</legend> + <p> + <select name='image_proxy'> + <option value="1" {% if image_proxy %}selected="selected"{% endif %}>{{ _('Enabled') }}</option> + <option value="" {% if not image_proxy %}selected="selected"{% endif %}>{{ _('Disabled') }}</option> + </select> + </p> + </fieldset> + <fieldset> <legend>{{ _('Method') }}</legend> <p> <select name='method'> |