8 lines
145 B
Python
8 lines
145 B
Python
|
from django.urls import path
|
||
|
|
||
|
from sncfgtfs import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('gare/<str:gare>/', views.GareView.as_view(), name='gare'),
|
||
|
]
|