Add station screen display

This commit is contained in:
2024-01-27 10:45:34 +01:00
parent de6e231639
commit 1192e89a01
44 changed files with 110165 additions and 128 deletions

7
sncfgtfs/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.urls import path
from sncfgtfs import views
urlpatterns = [
path('gare/<str:gare>/', views.GareView.as_view(), name='gare'),
]