Gallery-Archivist/archivist/apps/user/urls.py

7 lines
167 B
Python

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