summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/infinite_scroll.html
blob: f5bcf1c9514acec8e061c2c90c8056c2780aa739 (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" id="pref_infinite_scroll">
    {{- _('Automatically load the next page when scrolling to the bottom of the current page') -}}
  </div>{{- '' -}}
</fieldset>{{- '' -}}