equal
deleted
inserted
replaced
107 act="dates") |
107 act="dates") |
108 |
108 |
109 |
109 |
110 @app.errorhandler(404) |
110 @app.errorhandler(404) |
111 def page_not_found(e): |
111 def page_not_found(e): |
112 return render_template(get_locale() + "/404.html") |
112 msg = _(u"Url: %(url)s not found" , url=request.url) |
|
113 info = _(u"This information is not available!") |
|
114 return render_template("404.html", msg=msg, info=info) |
113 |
115 |
114 if __name__ == "__main__": |
116 if __name__ == "__main__": |
115 app.run(host='localhost', port=5014, debug=True) |
117 app.run(host='localhost', port=5014, debug=True) |