summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/infinite_scroll.html
blob: 1a734ae1a518547884ba1740c1525f480e6c3ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<fieldset>{{- '' -}}
  <legend>{{ _('Infinite scroll') }}</legend>{{- '' -}}
  <p class="value">{{- '' -}}
    <input type="checkbox" {{- ' ' -}}
           name="infinite_scroll" {{- ' ' -}}
           aria-labelledby="pref_infinite_scroll" {{- ' ' -}}
           class="checkbox-onoff" {{- ' ' -}}
           {%- if preferences.get_value('infinite_scroll') -%}
             checked
           {%- endif -%}{{- ' ' -}}
           />{{- '' -}}
  </p>{{- '' -}}
  <div class="description">
    {{- _('Automatically load next page when scrolling to bottom of current page') -}}
  </div>{{- '' -}}
</fieldset>{{- '' -}}