create project and create model and dashboard
This commit is contained in:
8
app/routes/dashboard.py
Normal file
8
app/routes/dashboard.py
Normal file
@@ -0,0 +1,8 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user