12 lines
194 B
Python
12 lines
194 B
Python
from django.urls import path
|
|
from profiles import views
|
|
|
|
app_name = "profiles"
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"settings/", views.ProfileFormView.as_view(), name="profile_settings"
|
|
),
|
|
]
|