diff -r 9f6275cad676 -r e928502fe563 pymove3d.py --- a/pymove3d.py Sun Jan 19 13:02:28 2014 +0100 +++ b/pymove3d.py Sun Jan 19 13:08:12 2014 +0100 @@ -92,7 +92,9 @@ @app.route("/submission") def submission(): - return render_template(get_locale() + "/submission.html", act="submission") + filename = os.path.join("templates", get_locale(), "rst", "submission.rst") + content = get_content(filename) + return render_template("/submission.html", act="submission", content=content) @app.route("/coursematerial") def coursematerial():