From 9e2a54b8e50d89f7a2aaaf2780c05e6fd6890e03 Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Tue, 4 Aug 2020 23:20:53 +0200 Subject: [PATCH] Stupid is not to check your changes before committing. --- lostplaces/lostplaces_app/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lostplaces/lostplaces_app/urls.py b/lostplaces/lostplaces_app/urls.py index 9fd95f7..feb6737 100644 --- a/lostplaces/lostplaces_app/urls.py +++ b/lostplaces/lostplaces_app/urls.py @@ -11,7 +11,7 @@ from .views import ( urlpatterns = [ path('hello_world/', hello_world), # You know what this is :P - path('/', HomeView.as_view(), name='home'), + path('', HomeView.as_view(), name='home'), path('signup/', SignUpView.as_view(), name='signup'), path('place//', place_detail_view, name='place_detail'), path('place/create/', PlaceCreateView.as_view(), name='place_create'),