7 lines
172 B
Python
7 lines
172 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("edit", views.fiche_modif, name="fiche_modif"),
|
|
path("<user>", views.fiche, name="fiche"),
|
|
]
|