diff options
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 %} |