6 lines
No EOL
104 B
Python
6 lines
No EOL
104 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('',views.fiche, name='fiche')
|
|
] |