mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
This fixes a regression from 60bd8b9#diff-1b714182564ef1fa942ff81b28f9ba3365ab76f75346f4255398bf9d6064b4cc Closes https://github.com/searxng/searxng/issues/5135
23 lines
823 B
HTML
23 lines
823 B
HTML
<fieldset>{{- '' -}}
|
|
<legend id="pref_safesearch">{{- _('SafeSearch') -}}</legend>{{- '' -}}
|
|
<div class="value">{{- '' -}}
|
|
<select name='safesearch' aria-labelledby="pref_safesearch">{{- '' -}}
|
|
<option value="2"
|
|
{%- if safesearch == 2 %} selected="selected" {%- endif -%}>
|
|
{{- _('Strict') -}}
|
|
</option>{{- '' -}}
|
|
<option value="1"
|
|
{%- if safesearch == 1 %} selected="selected" {%- endif -%}>
|
|
{{- _('Moderate') -}}
|
|
</option>{{- '' -}}
|
|
<option value="0"
|
|
{%- if safesearch == 0 %} selected="selected" {%- endif -%}>
|
|
{{- _('None') -}}
|
|
</option>{{- '' -}}
|
|
</select>{{- '' -}}
|
|
</div>{{- '' -}}
|
|
<div class="description">
|
|
{{- _('Filter content') -}}
|
|
</div>{{- '' -}}
|
|
</fieldset>{{- '' -}}
|