This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/views.py

9 lines
193 B
Python
Raw Normal View History

from flask import Blueprint, render_template
2021-12-22 23:29:44 +00:00
core = Blueprint('core', __name__)
@core.route('/profile/')
def user_profile():
return render_template('ereuse_devicehub/user_profile.html')