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