добавил детальный вид итема, пока недопиленый
All checks were successful
Deploy MES Core / deploy (push) Successful in 8s

This commit is contained in:
tertelius
2026-03-29 02:49:28 +03:00
parent a4ba577206
commit b256bec04b
15 changed files with 539 additions and 226 deletions

View File

@@ -1,5 +1,5 @@
from django.urls import path
from .views import IndexView, RegistryView
from .views import IndexView, ItemUpdateView, RegistryView
urlpatterns = [
# Главная страница (путь пустой)
@@ -7,4 +7,5 @@ urlpatterns = [
# Реестр
path('registry/', RegistryView.as_view(), name='registry'),
path('item/<int:pk>/', ItemUpdateView.as_view(), name='item_detail'),
]