1.1 --- a/pymove3d.py Sun Jan 19 13:02:28 2014 +0100
1.2 +++ b/pymove3d.py Sun Jan 19 13:08:12 2014 +0100
1.3 @@ -92,7 +92,9 @@
1.4
1.5 @app.route("/submission")
1.6 def submission():
1.7 - return render_template(get_locale() + "/submission.html", act="submission")
1.8 + filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
1.9 + content = get_content(filename)
1.10 + return render_template("/submission.html", act="submission", content=content)
1.11
1.12 @app.route("/coursematerial")
1.13 def coursematerial():