eskp.py
changeset 846 79503af02eb3
parent 845 3ed0b7ffbb50
child 848 bf84b8bf06da
equal deleted inserted replaced
845:3ed0b7ffbb50 846:79503af02eb3
     1 # -*- coding: utf-8 -*-
     1 # -*- coding: utf-8 -*-
       
     2 #!/usr/bin/env python
     2 import logging
     3 import logging
     3 
     4 
     4 import os
     5 import os
     5 import codecs
     6 import codecs
     6 import vobject
     7 import vobject
   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)
Impressum Datenschutzerklärung