kpsul/gestion/urls.py
2017-02-11 17:57:37 +01:00

9 lines
130 B
Python

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