diff -r 01792a152366 -r 3ed0b7ffbb50 eskp.py --- a/eskp.py Tue May 15 10:00:43 2018 +0200 +++ b/eskp.py Tue May 15 10:25:36 2018 +0200 @@ -346,6 +346,13 @@ return render_template("/content.html", act="imprint", content=content) +@app.route("/datenschutz") +def imprint(): + filename = os.path.join("templates", get_locale(), "rst", "datenschutz.rst") + content = get_content(filename) + return render_template("/content.html", act="datenschutz", content=content) + + @app.errorhandler(404) def page_not_found(e): msg = _(u"Url: %(url)s not found", url=request.url)