kappa123/kappa123/server/main/views.py

38 lines
698 B
Python
Raw Normal View History

# kappa123/server/main/views.py
2015-01-21 08:32:17 -08:00
#################
#### imports ####
#################
from flask import render_template, Blueprint
from aaaaaaa import pack_ints, unpack_ints
2015-01-21 08:32:17 -08:00
################
#### config ####
################
main_blueprint = Blueprint('main', __name__,)
################
#### routes ####
################
@main_blueprint.route('/')
def home():
unpacked_set = set()
2015-01-21 08:32:17 -08:00
return render_template('main/home.html')
@main_blueprint.route("/about/")
def about():
return render_template("main/about.html")
@main_blueprint.route("/<preferences>")
def returning_user(preferences):
unpacked_set = unpack_ints(preferences)
return render_template("main/home.html")