summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/results_on_new_tab.html
blob: c0d6c51a5900779576ba1ea2fb86be9318cd3e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<fieldset>{{- '' -}}
  <legend id="pref_results_on_new_tab">{{ _('Results on new tabs') }}</legend>{{- '' -}}
  <p class="value">{{- '' -}}
    <select name='results_on_new_tab' aria-labelledby="pref_results_on_new_tab">{{- '' -}}
      <option value="1" {% if results_on_new_tab %}selected="selected"{% endif %}>{{ _('On') }}</option>{{- '' -}}
      <option value="0" {% if not results_on_new_tab %}selected="selected"{% endif %}>{{ _('Off')}}</option>{{- '' -}}
    </select>{{- '' -}}
  </p>{{- '' -}}
  <div class="description">
    {{- _('Open result links on new browser tabs') -}}
  </div>{{- '' -}}
</fieldset>{{- '' -}}