diff options
author | asciimoo <asciimoo@gmail.com> | 2014-01-17 16:23:23 +0100 |
---|---|---|
committer | asciimoo <asciimoo@gmail.com> | 2014-01-17 16:23:23 +0100 |
commit | 8b3ca1112c77ab7d131c075530f0dc02c6029e7d (patch) | |
tree | 2bb413898a5105893aaadb9f2c9730a3c31b2d02 /searx/webapp.py | |
parent | d6c8987575d94b56b6b877e552de99fa0c62ba98 (diff) | |
download | searxng-8b3ca1112c77ab7d131c075530f0dc02c6029e7d.tar.gz searxng-8b3ca1112c77ab7d131c075530f0dc02c6029e7d.zip |
[enh] /engines page added
Diffstat (limited to 'searx/webapp.py')
-rw-r--r-- | searx/webapp.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 48448eb25..d6ec3a47b 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -174,8 +174,13 @@ def index(): @app.route('/about', methods=['GET']) def about(): + return render('about.html') + + +@app.route('/engines', methods=['GET']) +def list_engines(): global categories - return render('about.html', categs=categories.items()) + return render('engines.html', categs=categories.items()) @app.route('/preferences', methods=['GET', 'POST']) |