示例#1
0
def index():
    return flask.render_template(
        "index.html.tpl",
        link = "home",
        form = dict(),
        errors = dict()
    )
示例#2
0
def index():
    return flask.render_template(
        "index.html.tpl",
        link = "home",
        form = dict(),
        errors = dict()
    )
示例#3
0
def form_action():
    return flask.render_template(
        "index.html.tpl",
        link = "form",
        form = dict(),
        errors = dict(
            name = ["Invalid name"],
            age = ["Invalid age"]
        )
    )
示例#4
0
def form_action():
    return flask.render_template(
        "index.html.tpl",
        link = "form",
        form = dict(),
        errors = dict(
            name = ["Invalid name"],
            age = ["Invalid age"]
        )
    )