from django.conf.urls import url from . import views app_name = "gestion" urlpatterns = [ url(r"^profile$", views.profile, name="profile"), ]