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