summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/autocomplete.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/simple/preferences/autocomplete.html')
-rw-r--r--searx/templates/simple/preferences/autocomplete.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences/autocomplete.html b/searx/templates/simple/preferences/autocomplete.html
new file mode 100644
index 000000000..17ee22953
--- /dev/null
+++ b/searx/templates/simple/preferences/autocomplete.html
@@ -0,0 +1,17 @@
+<fieldset>{{- '' -}}
+ <legend id="pref_autocomplete">{{- _('Autocomplete') -}}</legend>{{- '' -}}
+ <div class="value">{{- '' -}}
+ <select name="autocomplete" aria-labelledby="pref_autocomplete">{{- '' -}}
+ <option value=""> - </option>
+ {%- for backend in autocomplete_backends -%}
+ <option value="{{ backend }}"
+ {%- if backend == autocomplete %} selected="selected" {%- endif -%}>
+ {{- backend -}}
+ </option>
+ {%- endfor -%}
+ </select>{{- '' -}}
+ </div>{{- '' -}}
+ <div class="description">
+ {{- _('Find stuff as you type') -}}
+ </div>{{- '' -}}
+</fieldset>{{- '' -}}