This commit is contained in:
2026-02-06 16:03:55 -05:00
parent 4525a90302
commit 7a4159b013
24 changed files with 686 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from flask import Blueprint, render_template
from flask_login import login_required, current_user
bp = Blueprint('dashboard', __name__)
@bp.route('/')
@bp.route('/dashboard')
@login_required
def index():
return render_template('dashboard.html', user=current_user)