summaryrefslogtreecommitdiff
path: root/searx/templates
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates')
-rw-r--r--searx/templates/simple/preferences.html1
-rw-r--r--searx/templates/simple/preferences/urlformatting.html25
2 files changed, 26 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html
index bc96e1198..665f2e638 100644
--- a/searx/templates/simple/preferences.html
+++ b/searx/templates/simple/preferences.html
@@ -204,6 +204,7 @@
{%- include 'simple/preferences/search_on_category_select.html' -%}
{%- endif -%}
{%- include 'simple/preferences/hotkeys.html' -%}
+ {%- include 'simple/preferences/urlformatting.html' -%}
{{- plugin_preferences('ui') -}}
{{- tab_footer() -}}
diff --git a/searx/templates/simple/preferences/urlformatting.html b/searx/templates/simple/preferences/urlformatting.html
new file mode 100644
index 000000000..ba11bdb63
--- /dev/null
+++ b/searx/templates/simple/preferences/urlformatting.html
@@ -0,0 +1,25 @@
+<fieldset>{{- '' -}}
+ <legend id="pref_url_formatting">{{- _('URL formatting') -}}</legend>{{- '' -}}
+ <div class="value">{{- '' -}}
+ <select name="url_formatting" aria-labelledby="pref_url_formatting">{{- '' -}}
+ <option value="pretty"
+ {%- if preferences.get_value('url_formatting') == 'pretty' %} selected="selected"
+ {%- endif -%}>
+ {{- _('Pretty') -}}
+ </option>{{- '' -}}
+ <option value="full"
+ {%- if preferences.get_value('url_formatting') == 'full' %} selected="selected"
+ {%- endif -%}>
+ {{- _('Full') -}}
+ </option>{{- '' -}}
+ <option value="host"
+ {%- if preferences.get_value('url_formatting') == 'host' %} selected="selected"
+ {%- endif -%}>
+ {{- _('Host') -}}
+ </option>{{- '' -}}
+ </select>{{- '' -}}
+ </div>{{- '' -}}
+ <div class="description">
+ {{- _('Change result URL formatting') -}}
+ </div>{{- '' -}}
+</fieldset>{{- '' -}}