начал работать с интерфейсом
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s

This commit is contained in:
tertelius
2026-03-29 00:24:39 +03:00
parent f86f0bfcd4
commit a4ba577206
19 changed files with 561 additions and 14 deletions

10
shiftflow/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from .views import IndexView, RegistryView
urlpatterns = [
# Главная страница (путь пустой)
path('', IndexView.as_view(), name='index'),
# Реестр
path('registry/', RegistryView.as_view(), name='registry'),
]