Files
MES_Core/shiftflow/urls.py
tertelius a4ba577206
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s
начал работать с интерфейсом
2026-03-29 00:27:29 +03:00

10 lines
289 B
Python

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