Files
notifications-admin/app/main/views/user_profile.py
T

8 lines
164 B
Python
Raw Normal View History

from flask import render_template
from app.main import main
@main.route("/user-profile")
def userprofile():
return render_template('views/user-profile.html')