annuaire-eleves/fiches/urls.py

6 lines
112 B
Python
Raw Normal View History

2019-03-25 22:30:25 +01:00
from django.urls import path
from . import views
urlpatterns = [
2019-04-08 21:47:50 +02:00
path('<int:id>',views.fiche, name='fiche')
2019-03-25 22:30:25 +01:00
]