Trying to add the invitations module.

This commit is contained in:
2020-08-01 16:54:11 +02:00
parent ea9b46961b
commit bea6c606fd
2 changed files with 13 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
from django.urls import path
from django.urls import path, include
from django.conf.urls import url
from .views import (
hello_world,
place_detail_view,
@@ -14,5 +15,6 @@ urlpatterns = [
path('place/<int:pk>/', place_detail_view, name='place_detail'),
path('place/create/', PlaceCreateView.as_view(), name='place_create'),
path('place/update/<int:pk>/', PlaceUpdateView.as_view(), name='place_edit'),
path('place/', place_list_view, name='place_list')
path('place/', place_list_view, name='place_list'),
(r'^accounts/', include('invitation.urls'))
]