начал работать с интерфейсом
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s
This commit is contained in:
10
shiftflow/urls.py
Normal file
10
shiftflow/urls.py
Normal 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'),
|
||||
]
|
||||
Reference in New Issue
Block a user