infinite_scroll.html 578 B

123456789101112
  1. <fieldset>{{- '' -}}
  2. <legend>{{ _('Infinite scroll') }}</legend>{{- '' -}}
  3. <p class="value">{{- '' -}}
  4. <select name='infinite_scroll'>{{- '' -}}
  5. <option value="1" {% if infinite_scroll %}selected="selected"{% endif %}>{{ _('On') }}</option>{{- '' -}}
  6. <option value="0" {% if not infinite_scroll %}selected="selected"{% endif %}>{{ _('Off')}}</option>{{- '' -}}
  7. </select>{{- '' -}}
  8. </p>{{- '' -}}
  9. <div class="description">
  10. {{- _('Automatically load next page when scrolling to bottom of current page') -}}
  11. </div>{{- '' -}}
  12. </fieldset>{{- '' -}}