Add help page with user documentation

Create comprehensive help page covering:
- Getting started workflow
- Sites and IP management
- Scan configuration
- Running scans manually
- Scheduling automated scans
- Scan comparisons
- Alerts and alert rules
- Webhook configuration

Add Help link with icon to navigation bar.
This commit is contained in:
2025-11-20 09:59:35 -06:00
parent cc3758f92d
commit 12d5aff7a5
3 changed files with 393 additions and 0 deletions

View File

@@ -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/<path:filename>')
@login_required
def serve_output_file(filename):