130 return render_template("/content.html", |
130 return render_template("/content.html", |
131 act="dates", content=content) |
131 act="dates", content=content) |
132 |
132 |
133 @app.route("/competition/2013") |
133 @app.route("/competition/2013") |
134 def competition_2013(): |
134 def competition_2013(): |
135 print get_locale() + "/archive/competitions/2013/index.html" |
135 filename = os.path.join("templates", get_locale(), "archive", "competitions", "2013", "rst", "2013.rst") |
136 return render_template(get_locale() + "/archive/competitions/2013/index.html", |
136 content = get_content(filename) |
137 act="coursematerial") |
137 return render_template("/impressions_2013.html", |
|
138 act="competition_2013", content=content) |
138 |
139 |
139 @app.route("/competition/2014") |
140 @app.route("/competition/2014") |
140 def competition_2014(): |
141 def competition_2014(): |
141 print get_locale() + "/archive/competitions/2014/index.html" |
142 print get_locale() + "/archive/competitions/2014/index.html" |
142 return render_template(get_locale() + "/archive/competitions/2014/index.html", |
143 return render_template(get_locale() + "/archive/competitions/2014/index.html", |