feat(people): Add detail views for Person and Relationship

This commit is contained in:
James Graham
2020-02-18 14:38:41 +00:00
parent 026fc10999
commit 4b2abd5d6c
6 changed files with 161 additions and 0 deletions

View File

@@ -27,4 +27,7 @@ urlpatterns = [
path('',
views.IndexView.as_view(),
name='index'),
path('',
include('people.urls')),
]