diff options
Diffstat (limited to 'app/views/notifications.py')
-rw-r--r-- | app/views/notifications.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/notifications.py b/app/views/notifications.py new file mode 100644 index 0000000..77108d7 --- /dev/null +++ b/app/views/notifications.py @@ -0,0 +1,9 @@ +from flask import * +from flask_user import current_user, login_required +from app import app +from app.models import * + +@app.route("/notifications/") +@login_required +def notifications_page(): + return render_template("notifications/list.html") |