[enh] /engines page added

This commit is contained in:
asciimoo 2014-01-17 16:23:23 +01:00
parent d6c8987575
commit 8b3ca1112c
2 changed files with 32 additions and 1 deletions

View file

@ -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'])