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

from flask import Blueprint, render_template
core = Blueprint('core', __name__)
@core.route('/profile/')
def user_profile():
return render_template('ereuse_devicehub/user_profile.html')