Fix Gravatar profiles showing on hover and add gravatar explanation and profile page for users
This commit is contained in:
parent
2451a6c630
commit
4c0db9f842
7 changed files with 79 additions and 10 deletions
|
|
@ -6,6 +6,7 @@ from .views import (
|
|||
ChangeDefaultFriendCodeView,
|
||||
EditFriendCodeView,
|
||||
SettingsView,
|
||||
ProfileView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
|
|
@ -16,4 +17,5 @@ urlpatterns = [
|
|||
path("friend-codes/delete/<int:pk>/", DeleteFriendCodeView.as_view(), name="delete_friend_code"),
|
||||
path("friend-codes/default/<int:pk>/", ChangeDefaultFriendCodeView.as_view(), name="change_default_friend_code"),
|
||||
path("settings/", SettingsView.as_view(), name="settings"),
|
||||
path("profile/", ProfileView.as_view(), name="profile"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue