def hello_there()

in hello_app/views.py [0:0]


def hello_there(name = None):
    return render_template(
        "hello_there.html",
        name=name,
        date=datetime.now()
    )