135 filename = os.path.join("templates", get_locale(), "archive", "competitions", "2013", "rst", "2013.rst") |
135 filename = os.path.join("templates", get_locale(), "archive", "competitions", "2013", "rst", "2013.rst") |
136 content = get_content(filename) |
136 content = get_content(filename) |
137 return render_template("/impressions_2013.html", |
137 return render_template("/impressions_2013.html", |
138 act="competition_2013", content=content) |
138 act="competition_2013", content=content) |
139 |
139 |
|
140 #ToDo content from rst missing |
140 @app.route("/competition/2014") |
141 @app.route("/competition/2014") |
141 def competition_2014(): |
142 def competition_2014(): |
142 print get_locale() + "/archive/competitions/2014/index.html" |
143 return render_template(get_locale() + "/archive/competitions/2014/index.html", |
143 return render_template(get_locale() + "/archive/competitions/2014/index.html", |
|
144 act="coursematerial") |
144 act="coursematerial") |
145 |
145 |
146 @app.errorhandler(404) |
146 @app.errorhandler(404) |
147 def page_not_found(e): |
147 def page_not_found(e): |
148 msg = _(u"Url: %(url)s not found" , url=request.url) |
148 msg = _(u"Url: %(url)s not found" , url=request.url) |