Move profile and settings into the new unified dashboard, showing user info in one place
This commit is contained in:
parent
2d826734a0
commit
7edefe23c3
37 changed files with 726 additions and 500 deletions
|
|
@ -5,8 +5,7 @@ from .views import (
|
|||
DeleteFriendCodeView,
|
||||
ChangeDefaultFriendCodeView,
|
||||
EditFriendCodeView,
|
||||
SettingsView,
|
||||
ProfileView,
|
||||
DashboardView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
|
|
@ -16,6 +15,5 @@ urlpatterns = [
|
|||
path("friend-codes/edit/<int:pk>/", EditFriendCodeView.as_view(), name="edit_friend_code"),
|
||||
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"),
|
||||
path("dashboard/", DashboardView.as_view(), name="dashboard"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue