14 lines
228 B
Python
14 lines
228 B
Python
"""Views for lumi2."""
|
|
|
|
from flask import (
|
|
Blueprint, render_template
|
|
)
|
|
|
|
|
|
bp = Blueprint('usermanager', __name__)
|
|
|
|
@bp.route('/')
|
|
def index():
|
|
"""Home page view."""
|
|
|
|
return render_template('usermanager/index.html')
|