Files
Comparison_Project/app/routes/dashboard.py

10 lines
287 B
Python
Raw Normal View History

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