feat(people): Add people list view

This commit is contained in:
James Graham
2020-02-18 15:05:30 +00:00
parent 4b2abd5d6c
commit e8416bc779
4 changed files with 51 additions and 4 deletions

View File

@@ -10,6 +10,10 @@ urlpatterns = [
views.ProfileView.as_view(),
name='person.profile'),
path('people',
views.PersonListView.as_view(),
name='person.list'),
path('people/<int:pk>',
views.ProfileView.as_view(),
name='person.detail'),