from django.urls import path from .views import ( hello_world, HomeView, place_detail_view, place_list_view, SignUpView, PlaceCreateView, PlaceUpdateView, PlaceDeleteView ) urlpatterns = [ path('hello_world/', hello_world), # You know what this is :P 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'), path('place/update//', PlaceUpdateView.as_view(), name='place_edit'), path('place/delete//', PlaceDeleteView.as_view(), name='place_delete'), path('place/', place_list_view, name='place_list') ]