diff -r c87c8fe6c9bf -r fe7b685bf6ed pymove3d.py --- a/pymove3d.py Sun Jan 19 12:30:28 2014 +0100 +++ b/pymove3d.py Sun Jan 19 12:38:29 2014 +0100 @@ -104,7 +104,9 @@ @app.route("/privacy") def privacy(): - return render_template(get_locale() + "/privacy.html", act="privacy") + filename = os.path.join("templates", get_locale(), "rst", "privacy.rst") + content = get_content(filename) + return render_template("/privacy.html", act="privacy", content=content) @app.route("/competition/2013") def competition_2013():