This commit is contained in:
2025-06-27 17:43:50 -05:00
parent 00fd49c79b
commit 13d56066ab
22 changed files with 1500 additions and 497 deletions

View File

@ -4,7 +4,7 @@ bp = Blueprint('errors', __name__)
@bp.app_errorhandler(400)
def bad_request(error):
return render_template('400.html'), 400
return render_template('400.html', error=error), 400
@bp.app_errorhandler(404)
def bad_request(error):