7 lines
167 B
Python
7 lines
167 B
Python
from django.urls import path
|
|
from .views import ProfileEditView
|
|
|
|
urlpatterns = [
|
|
# Other URL patterns
|
|
path('profile/edit', ProfileEditView, name='profile'),
|
|
]
|