Exemplo n.º 1
0
def landing_handler(response):
    response.write(render("landing.html", {'a': 'B'}))
Exemplo n.º 2
0
def home_handler(response):
    response.write(render("feed.html", {'a': 'B'}))
Exemplo n.º 3
0
def search_handler(response):
  response.write(render("search_results.html", {'a': 'B'}))
Exemplo n.º 4
0
def login_handler(response):
  response.write(render("login.html", {'a': 'B'}))
Exemplo n.º 5
0
def template_demo(response):
  response.write(render("test.html", {'a': 'B'}))
Exemplo n.º 6
0
def updateprofile_handler(response):
  response.write(render("update_profile.html", {'a': 'B'}))
Exemplo n.º 7
0
def input_handler(response):
    aih = ActivityInputHandler(activity_dict)
    response.write(render("input_activity.html", aih.get_template_data()))
Exemplo n.º 8
0
def profile_handler(response, user_id):
    poh = ProfileHandler(user_id)
    response.write(render("profile.html", poh.display_profile()))
Exemplo n.º 9
0
def register_handler(response):
    response.write(render("register.html", {'a': 'B'}))