16 lines
367 B
Python
16 lines
367 B
Python
from flask import Blueprint, render_template
|
|
from flask.views import View
|
|
|
|
|
|
core = Blueprint('core', __name__)
|
|
|
|
|
|
class UserProfileView(View):
|
|
template_name = 'ereuse_devicehub/user_profile.html'
|
|
|
|
def dispatch_request(self):
|
|
return render_template(self.template_name)
|
|
|
|
|
|
core.add_url_rule('/profile/', view_func=UserProfileView.as_view('user-profile'))
|