8 lines
183 B
Python
8 lines
183 B
Python
from flask import Blueprint, render_template
|
|
|
|
top_bp = Blueprint('top', __name__, url_prefix='/')
|
|
|
|
@top_bp.route('/')
|
|
def profile():
|
|
return render_template('top/dashboard.jinja')
|