summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/infinite_scroll.html
blob: 4ed34e438538182f639813d7395ee3ae05735091 (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 next page when scrolling to bottom of current page') -}}
  </div>{{- '' -}}
</fieldset>{{- '' -}}