2020-07-26 22:19:37 +02:00
|
|
|
from django.urls import path
|
2020-07-31 00:27:01 +02:00
|
|
|
from .views import (
|
|
|
|
hello_world,
|
|
|
|
place_detail_view,
|
|
|
|
place_list_view,
|
|
|
|
SignUpView,
|
|
|
|
PlaceCreateView,
|
|
|
|
PlaceUpdateView
|
|
|
|
)
|
2020-07-26 22:19:37 +02:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-07-29 00:15:12 +02:00
|
|
|
path('hello_world/', hello_world), # You know what this is :P
|
|
|
|
path('signup/', SignUpView.as_view(), name='signup'),
|
2020-07-26 23:34:03 +02:00
|
|
|
path('place/<int:pk>/', place_detail_view, name='place_detail'),
|
2020-07-31 00:27:01 +02:00
|
|
|
path('place/create/', PlaceCreateView.as_view(), name='place_create'),
|
|
|
|
path('place/update/<int:pk>/', PlaceUpdateView.as_view(), name='place_edit'),
|
2020-07-30 10:51:05 +02:00
|
|
|
path('place/', place_list_view, name='place_list')
|
2020-07-31 14:53:39 +02:00
|
|
|
]
|