diff options
author | rubenwardy <rw@rubenwardy.com> | 2019-11-16 00:05:59 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2019-11-16 00:05:59 +0000 |
commit | a7d22973ff12c6117e70fb0486c66bf510e62325 (patch) | |
tree | d651e446f860949f8e5bf0c8a655b3c5cc7c6773 | |
parent | 20583784f597b82e2bca61f137780f1cefd50cc5 (diff) | |
download | cheatdb-a7d22973ff12c6117e70fb0486c66bf510e62325.tar.xz |
Fix user profile after blueprints commit
-rw-r--r-- | app/blueprints/users/profile.py | 2 | ||||
-rw-r--r-- | app/templates/users/profile.html (renamed from app/templates/users/user_profile_page.html) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/app/blueprints/users/profile.py b/app/blueprints/users/profile.py index fd8d7d9..a3c592c 100644 --- a/app/blueprints/users/profile.py +++ b/app/blueprints/users/profile.py @@ -108,7 +108,7 @@ def profile(username): .all() # Process GET or invalid POST - return render_template("users/users.profile.html", + return render_template("users/profile.html", user=user, form=form, packages=packages, topics_to_add=topics_to_add) diff --git a/app/templates/users/user_profile_page.html b/app/templates/users/profile.html index d1edf54..d1edf54 100644 --- a/app/templates/users/user_profile_page.html +++ b/app/templates/users/profile.html |