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