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

8 lines
157 B
Python
Raw Normal View History

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