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