First draft of rolling stock page

This commit is contained in:
2022-04-10 23:42:29 +02:00
parent 8a87f6059e
commit 42e30b0009
7 changed files with 280 additions and 99 deletions

View File

@@ -1,7 +1,8 @@
from django.urls import path
from portal.views import GetHome
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'),
]