1
0
forked from finn/site

mgt c7 checkpoint 1

This commit is contained in:
finn 2024-08-03 06:31:19 -07:00
parent af0978c4e8
commit fe2dcd23f1
5 changed files with 32 additions and 1 deletions

View File

@ -1,2 +1,3 @@
FLASK_APP=microblog.py
FLASK_DEBUG=0

View File

@ -11,5 +11,5 @@ migrate = Migrate(app, db)
login = LoginManager(app)
login.login_view = 'login'
from app import routes, models
from app import routes, models, errors

13
backend/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

View File

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block content %}
<h1>File Not Found</h1>
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}

View File

@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<h1>An unexpected error has occurred.</h1>
<p>Administrator has been notified.</p>
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}