Files
MES_Core/shiftflow/urls.py
tertelius b256bec04b
All checks were successful
Deploy MES Core / deploy (push) Successful in 8s
добавил детальный вид итема, пока недопиленый
2026-03-29 02:49:28 +03:00

11 lines
379 B
Python

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