mirror of
https://github.com/searxng/searxng.git
synced 2025-08-29 22:55:28 +02:00
Merge pull request #2327 from renyhp/master
Add preference for displaying advanced settings
This commit is contained in:
commit
6ada5bac60
3 changed files with 25 additions and 4 deletions
|
@ -544,6 +544,9 @@ def index_error(output_format, error_message):
|
|||
def index():
|
||||
"""Render index page."""
|
||||
|
||||
# UI
|
||||
advanced_search = request.preferences.get_value('advanced_search')
|
||||
|
||||
# redirect to search if there's a query in the request
|
||||
if request.form.get('q'):
|
||||
query = ('?' + request.query_string.decode()) if request.query_string else ''
|
||||
|
@ -552,6 +555,7 @@ def index():
|
|||
return render(
|
||||
'index.html',
|
||||
selected_categories=get_selected_categories(request.preferences, request.form),
|
||||
advanced_search=advanced_search,
|
||||
)
|
||||
|
||||
|
||||
|
@ -572,6 +576,7 @@ def search():
|
|||
if output_format == 'html':
|
||||
return render(
|
||||
'index.html',
|
||||
advanced_search=request.preferences.get_value('advanced_search'),
|
||||
selected_categories=get_selected_categories(request.preferences, request.form),
|
||||
)
|
||||
else:
|
||||
|
@ -605,9 +610,6 @@ def search():
|
|||
if result_container.redirect_url:
|
||||
return redirect(result_container.redirect_url)
|
||||
|
||||
# UI
|
||||
advanced_search = request.form.get('advanced_search', None)
|
||||
|
||||
# Server-Timing header
|
||||
request.timings = result_container.get_timings()
|
||||
|
||||
|
@ -716,7 +718,6 @@ def search():
|
|||
pageno=search_query.pageno,
|
||||
time_range=search_query.time_range,
|
||||
number_of_results=format_decimal(number_of_results),
|
||||
advanced_search=advanced_search,
|
||||
suggestions=suggestion_urls,
|
||||
answers=result_container.answers,
|
||||
corrections=correction_urls,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue