contentdb/app/views/notifications.py
rubenwardy 4fdafefcd5
Add notifications
Fixes #28
2018-05-13 18:04:07 +01:00

10 lines
244 B
Python

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