diff --git a/app/web/routes/main.py b/app/web/routes/main.py index 583fdc5..8c5f366 100644 --- a/app/web/routes/main.py +++ b/app/web/routes/main.py @@ -247,6 +247,18 @@ def alert_rules(): ) +@bp.route('/help') +@login_required +def help(): + """ + Help page - explains how to use the application. + + Returns: + Rendered help template + """ + return render_template('help.html') + + @bp.route('/output/') @login_required def serve_output_file(filename): diff --git a/app/web/templates/base.html b/app/web/templates/base.html index 606a6d6..8496d07 100644 --- a/app/web/templates/base.html +++ b/app/web/templates/base.html @@ -77,6 +77,12 @@