changeset 165 | 74c4a410b913 |
parent 164 | fe7b685bf6ed |
child 166 | 9f6275cad676 |
1.1 --- a/pymove3d.py Sun Jan 19 12:38:29 2014 +0100 1.2 +++ b/pymove3d.py Sun Jan 19 12:53:41 2014 +0100 1.3 @@ -86,7 +86,9 @@ 1.4 1.5 @app.route("/task") 1.6 def task(): 1.7 - return render_template(get_locale() + "/task.html", act="task") 1.8 + filename = os.path.join("templates", get_locale(), "rst", "task.rst") 1.9 + content = get_content(filename) 1.10 + return render_template("/task.html", act="task", content=content) 1.11 1.12 @app.route("/submission") 1.13 def submission():