Files
pear-admin-flask/applications/views/admin/error.py
T
2021-03-18 22:59:02 +08:00

17 lines
394 B
Python

from flask import render_template
def init_error(app):
@app.errorhandler(403)
def page_not_found(e):
return render_template('errors/403.html'), 403
@app.errorhandler(404)
def page_not_found(e):
return render_template('errors/404.html'), 404
@app.errorhandler(500)
def internal_server_error(e):
return render_template('errors/500.html'), 500