acm-site/acmsite/dashboard/__init__.py
2024-03-03 20:29:35 -05:00

9 lines
184 B
Python

from flask import Blueprint, render_template
bp = Blueprint('dashboard', __name__, url_prefix='/dashboard')
@bp.route("/")
def home():
return render_template('dashboard.html')