# HG changeset patch # User Reimar Bauer # Date 1390122698 -3600 # Node ID 750903e3cfc0df19af5d6eed58de14717c0af082 # Parent f05d0e9abd237a51e63098eba924cafe35ac350e messages of 404.html defined in main program, template moved in common directory diff -r f05d0e9abd23 -r 750903e3cfc0 pymove3d.py --- a/pymove3d.py Sun Jan 19 10:09:19 2014 +0100 +++ b/pymove3d.py Sun Jan 19 10:11:38 2014 +0100 @@ -109,7 +109,9 @@ @app.errorhandler(404) def page_not_found(e): - return render_template(get_locale() + "/404.html") + msg = _(u"Url: %(url)s not found" , url=request.url) + info = _(u"This information is not available!") + return render_template("404.html", msg=msg, info=info) if __name__ == "__main__": app.run(host='localhost', port=5014, debug=True) diff -r f05d0e9abd23 -r 750903e3cfc0 templates/404.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/404.html Sun Jan 19 10:11:38 2014 +0100 @@ -0,0 +1,5 @@ +{% extends "theme.html" %} +{% block body %} +

{{ msg }}

+

{{ info }}

+{% endblock %} diff -r f05d0e9abd23 -r 750903e3cfc0 templates/de/404.html --- a/templates/de/404.html Sun Jan 19 10:09:19 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -{% extends "theme.html" %} -{% block body %} -

Page Not Found

-

_('This information is not available!')

_('Home') -{% endblock %} diff -r f05d0e9abd23 -r 750903e3cfc0 templates/en/404.html --- a/templates/en/404.html Sun Jan 19 10:09:19 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -{% extends "theme.html" %} -{% block body %} -

Page Not Found

-

_('This information is not available!')

_('Home') -{% endblock %}