Signup should be conifgured globally

This commit is contained in:
2020-09-10 18:37:10 +02:00
parent 72dc41ab79
commit 89bc00e5da
2 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,6 @@ from .views import (
HomeView,
PlaceDetailView,
PlaceListView,
SignUpView,
PlaceCreateView,
PlaceUpdateView,
PlaceDeleteView,
@@ -15,8 +14,7 @@ from .views import (
)
urlpatterns = [
path('', HomeView.as_view(), name='home'),
path('signup/', SignUpView.as_view(), name='signup'),
path('', HomeView.as_view(), name='lostplaces_home'),
path('place/<int:pk>/', PlaceDetailView.as_view(), name='place_detail'),
path('place/create/', PlaceCreateView.as_view(), name='place_create'),
path('photo_album/create/<int:place_id>', PhotoAlbumCreateView.as_view(), name='photo_album_create'),