Gallery-Archivist/archivist/apps/user/urls.py
2024-07-02 22:10:32 +02:00

7 lines
157 B
Python

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