Доработали генерацию сменных заданий
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s

This commit is contained in:
2026-03-29 23:19:13 +03:00
parent 6013d5854b
commit ff0b791a24
10 changed files with 311 additions and 18 deletions

View File

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