center_alignment.html 688 B

123456789101112
  1. <fieldset>{{- '' -}}
  2. <legend id="pref_center_alignment">{{ _('Center Alignment') }}</legend>{{- '' -}}
  3. <p class="value">{{- '' -}}
  4. <select name="center_alignment" aria-labelledby="pref_center_alignment">{{- '' -}}
  5. <option value="1" {% if preferences.get_value('center_alignment') %}selected="selected"{% endif %}>{{ _('On') }}</option>{{- '' -}}
  6. <option value="0" {% if not preferences.get_value('center_alignment') %}selected="selected"{% endif %}>{{ _('Off')}}</option>{{- '' -}}
  7. </select>{{- '' -}}
  8. </p>{{- '' -}}
  9. <div class="description">
  10. {{- _('Displays results in the center of the page (Oscar layout).') -}}
  11. </div>{{- '' -}}
  12. </fieldset>{{- '' -}}