gpp/port/urls.py

10 lines
180 B
Python
Raw Permalink Normal View History

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'),
path('/new_stay', new_stay, name='new_stay'),
2019-05-27 08:04:29 +02:00
]