1 from flask import Flask
2 from flask import render_template
3 from flask import request
4 from flask import abort, redirect, url_for
6 from flask import send_from_directory
8 from logging import Formatter
10 from flask.ext.babel import gettext as _
11 from flask.ext.babel import Babel
13 from config import LANGUAGES
21 """ToDo: if translation is completed, switch to en """
22 return request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
29 return render_template(get_locale() + "/index.html")
31 @app.route("/competition")
33 return render_template(get_locale() + "/competition.html", act="competition")
37 return render_template(get_locale() + "/task.html", act="task")
39 @app.route("/submission")
41 return render_template(get_locale() + "/submission.html", act="submission")
43 @app.route("/coursematerial")
45 return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
47 @app.route("/imprint")
49 return render_template(get_locale() + "/imprint.html", act="imprint")
51 @app.route("/privacy")
53 return render_template(get_locale() + "/privacy.html", act="privacy")
56 @app.route(_("/competition-2013"))
57 def competition_2013():
58 return render_template(get_locale() + "/archive/competitions/2013/comptetition_2013.html",
61 @app.route(_("/competition-2014"))
62 def competition_2014():
63 return render_template(get_locale() + "archive/competitions/2014/competition_2014.html",
66 @app.route(_("/dates"))
68 return render_template(get_locale() + "/dates.html",
72 @app.errorhandler(404)
73 def page_not_found(e):
74 return render_template(get_locale() + "/404.html")
76 if __name__ == "__main__":
77 app.run(host='localhost', port=5014, debug=True)