refactored templates

This commit is contained in:
2026-02-21 23:09:22 +01:00
parent 44b8e90448
commit 076293f80d
14 changed files with 694 additions and 699 deletions

View File

@@ -195,3 +195,12 @@ def hide_active_banner():
@flask_login.login_required
def confused_notifications():
return render_template("confused.html")
@admin_bp.route("/dashboard")
@flask_login.login_required
def dashboard():
return render_template(
'dashboard.html',
grafana_url='/dashboard/d/tutor-tool'
)