Add help page

This commit is contained in:
David Hoppenbrouwers
2022-10-10 19:01:24 +02:00
parent d4baefa573
commit db4f4e2a4d
3 changed files with 29 additions and 0 deletions

View File

@@ -539,6 +539,14 @@ def admin_restart():
restart()
return redirect(url_for('admin'))
# TODO can probably be a static-esque page, maybe?
@app.route('/help/')
def help():
return render_template(
'help.html',
title = 'Help',
user = get_user(),
)
def _admin_check():
user = get_user()