Add a manual page

This commit is contained in:
Patrick Jentsch
2022-05-17 15:31:05 +02:00
parent 6b8d4d87bb
commit 8136cedccb
19 changed files with 580 additions and 2 deletions

View File

@ -33,6 +33,11 @@ def dashboard():
return render_template('main/dashboard.html.j2', title='Dashboard')
@bp.route('/user_manual')
def user_manual():
return render_template('main/user_manual.html.j2', title='User manual')
@bp.route('/news')
def news():
return render_template('main/news.html.j2', title='News')