12 lines
300 B
Python
12 lines
300 B
Python
from django.urls import path
|
|
|
|
from ..views.index import *
|
|
|
|
app_name = 'index'
|
|
urlpatterns = [
|
|
path('', index, name='index'),
|
|
path('new_stay/', new_stay, name='new_stay'),
|
|
path('new_stay/boat', new_boat, name='new_boat'),
|
|
path('reset_session/', reset_session, name='reset_session'),
|
|
]
|