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/courgette/preferences.html | |
| parent | f3d7af33fd47372e7c572cc125d2c19f74a8ef3d (diff) | |
[enh] add image proxy toggle to preferences templates
Diffstat (limited to 'searx/templates/courgette/preferences.html')
| -rw-r--r-- | searx/templates/courgette/preferences.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/searx/templates/courgette/preferences.html b/searx/templates/courgette/preferences.html index c492e3751..07d79b532 100644 --- a/searx/templates/courgette/preferences.html +++ b/searx/templates/courgette/preferences.html @@ -42,6 +42,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'> @@ -96,4 +105,4 @@ <div class="right preferences_back"><a href="{{ url_for('index') }}">{{ _('back') }}</a></div> </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} |