Refactor: use Flask class based views

This commit is contained in:
Santiago L 2021-12-27 08:54:55 +01:00
parent d5b972e9e3
commit 093e1d415d
1 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,15 @@
from flask import Blueprint, render_template
from flask.views import View
core = Blueprint('core', __name__)
@core.route('/profile/')
def user_profile():
return render_template('ereuse_devicehub/user_profile.html')
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'))