10 lines
289 B
Python
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'),
|
|
] |