diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2023-06-02 19:55:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-02 19:55:43 +0200 |
| commit | 1541f8660eeccd7eb426bb655f28217033770eb3 (patch) | |
| tree | 3f4e4735a35e18d61eccd6d94f7dbb7923546727 /searx/templates/simple/preferences/image_proxy.html | |
| parent | d289a8b22515e36d015b51c95bce716427329ca5 (diff) | |
| parent | b867c39ce0b4c0c15451aef27b071b1718ef1d50 (diff) | |
Merge pull request #2481 / [mod] template preferences: split into elements
HINT: this patch has no functional change / it is the preparation for following changes and bugfixes
Over the years, the preferences template became an unmanageable beast. To make the source code more readable the monolith is splitted into elements. The splitting into elements also has the advantage that a new template can make use of them.
The reversed checkbox is a quirk that is only used in the prefereces and must be eliminated in the long term. For this the macro 'checkbox_onoff_reversed' was added to the preferences.html template. The 'checkbox' macro is also a quirk of the preferences.html we don't want to use in other templates (it is an input-checkbox in a HTML form that was misused for status display).
Diffstat (limited to 'searx/templates/simple/preferences/image_proxy.html')
| -rw-r--r-- | searx/templates/simple/preferences/image_proxy.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences/image_proxy.html b/searx/templates/simple/preferences/image_proxy.html new file mode 100644 index 000000000..c636a3172 --- /dev/null +++ b/searx/templates/simple/preferences/image_proxy.html @@ -0,0 +1,12 @@ +<fieldset>{{- '' -}} + <legend id="pref_image_proxy">{{ _('Image proxy') }}</legend>{{- '' -}} + <p class="value">{{- '' -}} + <select name='image_proxy' aria-labelledby="pref_image_proxy">{{- '' -}} + <option value="1" {% if image_proxy %}selected="selected"{% endif %}>{{ _('Enabled') }}</option>{{- '' -}} + <option value="0" {% if not image_proxy %}selected="selected"{% endif %}>{{ _('Disabled') }}</option>{{- '' -}} + </select>{{- '' -}} + </p> + <div class="description"> + {{- _('Proxying image results through SearXNG') -}} + </div>{{- '' -}} +</fieldset>{{- '' -}} |