Exemplo n.º 1
0
def index():
    return render_template("index.html")
Exemplo n.º 2
0
def show_user():
    return render_template('user.html', name=session['name'], email=['email'])
Exemplo n.º 3
0
def not_found_error(error):
    return render_template('404.html'), 404
Exemplo n.º 4
0
def internal_error(error):
    db.session.rollback()
    return render_template('500.html'), 500
Exemplo n.º 5
0
def index():
    return render_template('index.html')