2019-05-27 08:04:29 +02:00
|
|
|
from django.urls import path
|
|
|
|
|
2019-06-08 13:08:57 +02:00
|
|
|
from .views.index import *
|
2019-05-27 08:04:29 +02:00
|
|
|
|
2019-06-08 13:08:57 +02:00
|
|
|
app_name = 'index'
|
2019-05-27 08:04:29 +02:00
|
|
|
urlpatterns = [
|
2019-06-08 13:08:57 +02:00
|
|
|
path('', index, name='index'),
|
2019-06-23 14:42:06 +02:00
|
|
|
path('/new_stay', new_stay, name='new_stay'),
|
2019-05-27 08:04:29 +02:00
|
|
|
]
|