diff options
author | Alexandre Flament <alex@al-f.net> | 2022-05-15 20:42:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 20:42:37 +0200 |
commit | f814ac703b25640d28ab3a4a096f693808cde6db (patch) | |
tree | 7dc3ad14a12b72f8b52010bf1cc9ab5442aa0765 /searx/templates | |
parent | 173c14544e918891b2cb788615294ccb157892ae (diff) | |
parent | 7d443dfea389d8bfaaa90142d3c1a6c1a068d5a9 (diff) | |
download | searxng-f814ac703b25640d28ab3a4a096f693808cde6db.tar.gz searxng-f814ac703b25640d28ab3a4a096f693808cde6db.zip |
Merge pull request #1202 from julianfairfax/master
Preferences URL in preferences
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/simple/preferences.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 2278237b5..4dde6fec2 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -406,6 +406,11 @@ <pre>{{ url_for('index', _external=True) }}?preferences={{ preferences_url_params|e }}{% raw %}&q=%s{% endraw %}</pre> </div> <p class="small_font">{{ _('Note: specifying custom settings in the search URL can reduce privacy by leaking data to the clicked result sites.') }}</p> + <h4>{{ _('URL to restore your preferences in another browser') }} :</h4> + <div class="selectable_url"> + <pre>{{ url_for('preferences', _external=True) }}?preferences={{ preferences_url_params|e }}&save=1</pre> + </div> + <p class="small_font">{{ _('Specifying custom settings in the preferences URL can be used to sync preferences across devices.') }}</p> {{ tab_footer() }} {{ tabs_close() }} |