summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/infinite_scroll.html
blob: df91b5f2eefd24fc0d488676b8114c6cc3909e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
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>{{- '' -}}