11 lines
240 B
Python
11 lines
240 B
Python
from flask import Blueprint, render_template
|
|
from flask_login import login_required
|
|
|
|
dashboard_bp = Blueprint('dashboard', __name__)
|
|
|
|
|
|
@dashboard_bp.route('/')
|
|
@login_required
|
|
def index():
|
|
return render_template('dashboard/index.html')
|