2023-06-02 15:30:02 +02:00
|
|
|
<fieldset>{{- '' -}}
|
|
|
|
|
<legend id="pref_safesearch">{{- _('SafeSearch') -}}</legend>{{- '' -}}
|
|
|
|
|
<div class="value">{{- '' -}}
|
|
|
|
|
<select name='safesearch' aria-labelledby="pref_safesearch">{{- '' -}}
|
|
|
|
|
<option value="2"
|
2025-08-20 18:04:13 +02:00
|
|
|
{%- if safesearch == 2 %} selected="selected" {%- endif -%}>
|
2023-06-02 15:30:02 +02:00
|
|
|
{{- _('Strict') -}}
|
|
|
|
|
</option>{{- '' -}}
|
|
|
|
|
<option value="1"
|
2025-08-20 18:04:13 +02:00
|
|
|
{%- if safesearch == 1 %} selected="selected" {%- endif -%}>
|
2023-06-02 15:30:02 +02:00
|
|
|
{{- _('Moderate') -}}
|
|
|
|
|
</option>{{- '' -}}
|
|
|
|
|
<option value="0"
|
2025-08-20 18:04:13 +02:00
|
|
|
{%- if safesearch == 0 %} selected="selected" {%- endif -%}>
|
2023-06-02 15:30:02 +02:00
|
|
|
{{- _('None') -}}
|
|
|
|
|
</option>{{- '' -}}
|
|
|
|
|
</select>{{- '' -}}
|
|
|
|
|
</div>{{- '' -}}
|
|
|
|
|
<div class="description">
|
|
|
|
|
{{- _('Filter content') -}}
|
|
|
|
|
</div>{{- '' -}}
|
|
|
|
|
</fieldset>{{- '' -}}
|