Extend the rolling stock page

This commit is contained in:
2022-04-12 22:49:53 +02:00
parent 42e30b0009
commit ec8e736393
9 changed files with 159 additions and 27 deletions

View File

@@ -4,5 +4,5 @@ from portal.views import GetHome, GetRollingStock
urlpatterns = [
path("<int:page>", GetHome.as_view(), name='index_pagination'),
path("<uuid:uuid>", GetRollingStock.as_view(), name='rollig_stock'),
path("<uuid:uuid>", GetRollingStock.as_view(), name='rolling_stock'),
]