[profiles] Add settings form
This commit is contained in:
11
vrobbler/apps/profiles/urls.py
Normal file
11
vrobbler/apps/profiles/urls.py
Normal file
@ -0,0 +1,11 @@
|
||||
from django.urls import path
|
||||
from profiles import views
|
||||
|
||||
app_name = "profiles"
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
"settings/", views.ProfileDetailView.as_view(), name="profile_settings"
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user