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

8 lines
167 B
Python
Raw Normal View History

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