summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/infinite_scroll.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/simple/preferences/infinite_scroll.html')
-rw-r--r--searx/templates/simple/preferences/infinite_scroll.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences/infinite_scroll.html b/searx/templates/simple/preferences/infinite_scroll.html
new file mode 100644
index 000000000..df91b5f2e
--- /dev/null
+++ b/searx/templates/simple/preferences/infinite_scroll.html
@@ -0,0 +1,12 @@
+<fieldset>{{- '' -}}
+ <legend>{{ _('Infinite scroll') }}</legend>{{- '' -}}
+ <p class="value">{{- '' -}}
+ <select name='infinite_scroll'>{{- '' -}}
+ <option value="1" {% if infinite_scroll %}selected="selected"{% endif %}>{{ _('On') }}</option>{{- '' -}}
+ <option value="0" {% if not infinite_scroll %}selected="selected"{% endif %}>{{ _('Off')}}</option>{{- '' -}}
+ </select>{{- '' -}}
+ </p>{{- '' -}}
+ <div class="description">
+ {{- _('Automatically load next page when scrolling to bottom of current page') -}}
+ </div>{{- '' -}}
+</fieldset>{{- '' -}}