Chapter 7

This commit is contained in:
2023-06-03 18:07:36 +02:00
parent 4dd7d11190
commit 8c1df34587
7 changed files with 85 additions and 2 deletions

13
app/errors.py Normal file
View File

@@ -0,0 +1,13 @@
from flask import render_template
from app import app, db
@app.errorhandler(404)
def not_found_error(error):
return render_template("404.html"), 404
@app.errorhandler(500)
def internal_error(error):
db.session.rollback()
return render_template("500.html"), 500