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

8 lines
167 B
Python
Raw Normal View History

2024-07-02 20:10:32 +00:00
from django.urls import path
2024-07-03 20:05:22 +00:00
from .views import ProfileEditView
2024-07-02 20:10:32 +00:00
urlpatterns = [
# Other URL patterns
2024-07-03 20:05:22 +00:00
path('profile/edit', ProfileEditView, name='profile'),
2024-07-02 20:10:32 +00:00
]