Доработали генерацию сменных заданий
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s
This commit is contained in:
@@ -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'),
|
||||
]
|
||||
Reference in New Issue
Block a user