Files
Comparison_Project/app/routes/dashboard.py

9 lines
235 B
Python

from flask import Blueprint, render_template
dashboard_bp = Blueprint("dashboard", __name__)
@dashboard_bp.route("/")
@dashboard_bp.route("/dashboard")
def dashboard():
return render_template("dashboard.html", title="Dashboard")