Add dashboard2

This commit is contained in:
Patrick Jentsch
2022-12-15 09:53:19 +01:00
parent 5a396ce214
commit 9904e54c51
3 changed files with 194 additions and 6 deletions

View File

@ -30,6 +30,12 @@ def dashboard():
return render_template('main/dashboard.html.j2', title='Dashboard')
@bp.route('/dashboard2')
@login_required
def dashboard2():
return render_template('main/dashboard2.html.j2', title='Dashboard')
@bp.route('/user_manual')
def user_manual():
return render_template('main/user_manual.html.j2', title='User manual')