contentdb/app/views/notifications.py

10 lines
244 B
Python
Raw Normal View History

2018-05-13 18:55:28 +02:00
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")