summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-01-31 12:42:04 +0100
committerMartin Fischer <martin@push-f.com>2022-02-01 06:29:22 +0100
commit14338e2c3b796b9dfb74430751d75067018a70fd (patch)
treeb2cf32f5c9269e3c16ce56372a9d5fc22838a257 /searx
parentc53c295573d6261be682cc506eefd5d8f0c04e07 (diff)
[enh] generate navigation for help pages
Diffstat (limited to 'searx')
-rw-r--r--searx/templates/oscar/help.html7
-rw-r--r--searx/templates/simple/help.html7
-rwxr-xr-xsearx/webapp.py4
3 files changed, 17 insertions, 1 deletions
diff --git a/searx/templates/oscar/help.html b/searx/templates/oscar/help.html
index 7865f6649..bf311fb4a 100644
--- a/searx/templates/oscar/help.html
+++ b/searx/templates/oscar/help.html
@@ -1,5 +1,12 @@
{% extends "oscar/base.html" %}
{% block title %}{{ page.title }} - {% endblock %}
{% block content %}
+<ul class="nav nav-tabs">
+{% for name, page in all_pages %}
+ <li {% if name == page_filename %}class="active"{% endif %}>
+ <a href="{{name}}">{{page.title}}</a>
+ </li>
+{% endfor %}
+</ul>
{{ page.content | safe }}
{% endblock %}
diff --git a/searx/templates/simple/help.html b/searx/templates/simple/help.html
index 0be59f495..5f571ae01 100644
--- a/searx/templates/simple/help.html
+++ b/searx/templates/simple/help.html
@@ -1,5 +1,12 @@
{% extends 'simple/page_with_header.html' %}
{% block title %}{{ page.title }} - {% endblock %}
{% block content %}
+<ul class="tabs">
+{% for name, page in all_pages %}
+ <li>
+ <a href="{{name}}" {% if name == page_filename %}class="active"{% endif %}>{{page.title}}</a>
+ </li>
+{% endfor %}
+</ul>
{{ page.content | safe }}
{% endblock %}
diff --git a/searx/webapp.py b/searx/webapp.py
index bd296cddc..5e05f9781 100755
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -889,7 +889,9 @@ def help_page(pagename):
if page is None:
flask.abort(404)
- return render('help.html', page=user_help.PAGES[pagename])
+ return render(
+ 'help.html', page=user_help.PAGES[pagename], all_pages=user_help.PAGES.items(), page_filename=pagename
+ )
@app.route('/autocompleter', methods=['GET', 'POST'])