summaryrefslogtreecommitdiff
path: root/app/views.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/views.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/views.py b/app/views.py
new file mode 100644
index 0000000..7450946
--- /dev/null
+++ b/app/views.py
@@ -0,0 +1,32 @@
+from flask import render_template, request, url_for
+import flask
+
+from . import app, db
+
+# check for mobile visitors
+mobile_checks = ["J2ME", "Opera Mini"]
+
+@app.before_request
+def handle_mobile():
+ ua = request.environ.get("HTTP_USER_AGENT", "")
+
+ flask.g.is_mobile = any((x in ua) for x in mobile_checks)
+
+
+@app.template_filter("static_url")
+def static_url(s):
+ return url_for("static", filename=s)
+
+
+#@app.errorhandler(404)
+#def page_not_found (error):
+# print request.path
+
+@app.route("/")
+@app.route("/index")
+def index():
+ return render_template("root.jinja")
+
+@app.route("/add")
+def addExp():
+ return render_template("root.jinja")