Add notifications

Fixes #28
This commit is contained in:
rubenwardy
2018-05-13 17:55:28 +01:00
parent f3c433de06
commit 4fdafefcd5
8 changed files with 99 additions and 5 deletions

View File

@@ -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")