344 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst") |
345 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst") |
345 content = get_content(filename) |
346 content = get_content(filename) |
346 return render_template("/content.html", act="imprint", content=content) |
347 return render_template("/content.html", act="imprint", content=content) |
347 |
348 |
348 |
349 |
349 @app.route("/datenschutz") |
350 @app.route("/dataprotection") |
350 def imprint(): |
351 def dataprotection(): |
351 filename = os.path.join("templates", get_locale(), "rst", "datenschutz.rst") |
352 filename = os.path.join("templates", get_locale(), "rst", "datenschutz.rst") |
352 content = get_content(filename) |
353 content = get_content(filename) |
353 return render_template("/content.html", act="datenschutz", content=content) |
354 return render_template("/content.html", act="datenschutz", content=content) |
354 |
355 |
355 |
356 |
356 @app.errorhandler(404) |
357 @app.errorhandler(404) |
357 def page_not_found(e): |
358 def page_not_found(e): |
358 msg = _(u"Url: %(url)s not found", url=request.url) |
359 msg = _(u"Url: %(url)s not found", url=request.url) |