Stupid is not to check your changes before committing.

This commit is contained in:
Marcus Scholz 2020-08-04 23:20:53 +02:00
parent c20e9c866d
commit 9e2a54b8e5

View File

@ -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/<int:pk>/', place_detail_view, name='place_detail'),
path('place/create/', PlaceCreateView.as_view(), name='place_create'),