diff --git a/breccia_mapper/templates/base.html b/breccia_mapper/templates/base.html
index 60f1389..ecd2984 100644
--- a/breccia_mapper/templates/base.html
+++ b/breccia_mapper/templates/base.html
@@ -108,7 +108,7 @@
{# Global banner if config.NOTICE_TEXT is set using Constance #}
{% if config.NOTICE_TEXT %}
-
+
{{ config.NOTICE_TEXT }}
{% endif %}
diff --git a/people/templates/people/person/list.html b/people/templates/people/person/list.html
new file mode 100644
index 0000000..b3cf1f6
--- /dev/null
+++ b/people/templates/people/person/list.html
@@ -0,0 +1,37 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
+ People
+
+
+
+
+
+
+
+
+ Name
+
+
+
+
+ {% for person in person_list.all %}
+
+ {{ person }}
+
+ Profile
+
+
+
+ {% empty %}
+
+ No records
+
+ {% endfor %}
+
+
+
+{% endblock %}
diff --git a/people/urls.py b/people/urls.py
index 82aa305..ce9dcc9 100644
--- a/people/urls.py
+++ b/people/urls.py
@@ -10,6 +10,10 @@ urlpatterns = [
views.ProfileView.as_view(),
name='person.profile'),
+ path('people',
+ views.PersonListView.as_view(),
+ name='person.list'),
+
path('people/
',
views.ProfileView.as_view(),
name='person.detail'),
diff --git a/people/views.py b/people/views.py
index a696824..4524edf 100644
--- a/people/views.py
+++ b/people/views.py
@@ -2,18 +2,25 @@
Views for displaying or manipulating models in the 'people' app.
"""
-from django.views.generic import DetailView
+from django.views.generic import DetailView, ListView
from . import models
+class PersonListView(ListView):
+ """
+ View displaying a list of :class:`Person` objects - searchable.
+ """
+ model = models.Person
+ template_name = 'people/person/list.html'
+
+
class ProfileView(DetailView):
"""
View displaying the profile of a :class:`Person` - who may be a user.
"""
model = models.Person
template_name = 'people/person/detail.html'
- context_object_name = 'person'
class RelationshipDetailView(DetailView):
@@ -22,4 +29,3 @@ class RelationshipDetailView(DetailView):
"""
model = models.Relationship
template_name = 'people/relationship/detail.html'
- context_object_name = 'relationship'