Files
homelog/container/urls.py
2022-03-09 18:13:09 +01:00

12 lines
414 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
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'),
]