gpp/port/urls/index.py

10 lines
181 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'),
]