2022-03-09 10:33:05 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
2022-03-09 17:29:44 +00:00
|
|
|
app_name = 'container'
|
2022-03-09 10:33:05 +00:00
|
|
|
urlpatterns = [
|
|
|
|
path('', views.index, name='index'),
|
2022-03-09 17:13:09 +00:00
|
|
|
path('<int:container_id>/', views.container_details, name='container_details'),
|
|
|
|
path('type/<int:container_type_id>/', views.container_type_details, name='container_type_details'),
|
|
|
|
# path('type/<string:container_type_named_id>/', views.container_type_details, name='container_type_details'),
|
2022-03-09 10:33:05 +00:00
|
|
|
]
|
|
|
|
|