2020-07-26 22:19:37 +02:00
|
|
|
from django.urls import path
|
2020-07-31 00:27:01 +02:00
|
|
|
from .views import (
|
2020-08-05 18:57:09 +02:00
|
|
|
HomeView,
|
2020-08-12 19:24:04 +02:00
|
|
|
PlaceDetailView,
|
|
|
|
PlaceListView,
|
2020-07-31 00:27:01 +02:00
|
|
|
SignUpView,
|
|
|
|
PlaceCreateView,
|
2020-08-06 16:57:43 +02:00
|
|
|
PlaceUpdateView,
|
2020-08-26 21:36:10 +02:00
|
|
|
PlaceDeleteView,
|
2020-08-27 10:30:50 +02:00
|
|
|
PhotoAlbumCreateView,
|
2020-08-30 18:39:45 +02:00
|
|
|
PhotoAlbumDeleteView,
|
|
|
|
PlaceTagSubmitView
|
2020-07-31 00:27:01 +02:00
|
|
|
)
|
2020-07-26 22:19:37 +02:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-08-05 18:57:09 +02:00
|
|
|
path('', HomeView.as_view(), name='home'),
|
2020-07-29 00:15:12 +02:00
|
|
|
path('signup/', SignUpView.as_view(), name='signup'),
|
2020-08-12 19:24:04 +02:00
|
|
|
path('place/<int:pk>/', PlaceDetailView.as_view(), name='place_detail'),
|
2020-07-31 00:27:01 +02:00
|
|
|
path('place/create/', PlaceCreateView.as_view(), name='place_create'),
|
2020-08-26 21:36:10 +02:00
|
|
|
path('photo_album/create/<int:place_id>', PhotoAlbumCreateView.as_view(), name='photo_album_create'),
|
2020-08-27 10:30:50 +02:00
|
|
|
path('photo_album/delete/<int:pk>', PhotoAlbumDeleteView.as_view(), name='photo_album_delete'),
|
2020-07-31 00:27:01 +02:00
|
|
|
path('place/update/<int:pk>/', PlaceUpdateView.as_view(), name='place_edit'),
|
2020-08-06 16:57:43 +02:00
|
|
|
path('place/delete/<int:pk>/', PlaceDeleteView.as_view(), name='place_delete'),
|
2020-08-30 18:39:45 +02:00
|
|
|
path('place/', PlaceListView.as_view(), name='place_list'),
|
|
|
|
path('place/tag/<int:place_id>', PlaceTagSubmitView.as_view(), name='place_tag_submit'),
|
2020-07-31 14:53:39 +02:00
|
|
|
]
|