haldis/app/utils.py
Feliciaan De Palmenaer d2f9b4dc9d Look fancy error pages
2015-03-27 18:25:09 +01:00

17 lines
366 B
Python

from flask import render_template
from app import app
__author__ = 'feliciaan'
@app.template_filter('euro')
def euro(value):
result = '' + str(value/100)
return result
@app.errorhandler(404)
def handle404(e):
return render_template('errors/404.html'), 404
@app.errorhandler(401)
def handle401(e):
return render_template('errors/401.html'), 401