feat(people): Allow people to describe relationships

Creating a relationship requires answering each of the
relationship questions

resolve #2
partial #5
This commit is contained in:
James Graham
2020-02-20 14:46:51 +00:00
parent e1df999108
commit 5a1b043862
7 changed files with 147 additions and 1 deletions

View File

@@ -22,6 +22,10 @@ urlpatterns = [
views.ProfileView.as_view(),
name='person.detail'),
path('people/<int:person_pk>/relationships/create',
views.RelationshipCreateView.as_view(),
name='person.relationship.create'),
path('relationships/<int:pk>',
views.RelationshipDetailView.as_view(),
name='relationship.detail'),