9 lines
235 B
Python
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")
|