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