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 return request.accept_languages.best_match(LANGUAGES.keys())
25 @app.route(_("/index"))
27 return render_template(_("en/index.html"))
29 @app.route(_("/competition"))
31 return render_template(_("en/competition.html"), act="competition")
33 @app.route(_("/task"))
35 return render_template(_("en/task.html"), act="task")
37 @app.route(_("/submission"))
39 return render_template(_("en/submission.html"), act="submission")
41 @app.route(_("/coursematerial"))
43 return render_template(_("en/coursematerial.html"), act="coursematerial")
45 @app.route(_("/imprint"))
47 return render_template(_("en/imprint.html"), act="imprint")
49 @app.route(_("/privacy"))
51 return render_template(_("en/privacy.html"), act="privacy")
54 @app.errorhandler(404)
55 def page_not_found(e):
56 return render_template(_("en/404.html")), 404
58 if __name__ == "__main__":
59 app.run(host='localhost', port=5014, debug=True)