diff options
Diffstat (limited to 'bak/unused_apps/people/views.py')
-rw-r--r-- | bak/unused_apps/people/views.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bak/unused_apps/people/views.py b/bak/unused_apps/people/views.py index 36c0657..88bd87e 100644 --- a/bak/unused_apps/people/views.py +++ b/bak/unused_apps/people/views.py @@ -7,12 +7,10 @@ from .models import Person class PersonListView(PaginatedListView): model = Person - template_name = 'archives/people.html' def get_context_data(self, **kwargs): # Call the base implementation first to get a context context = super(PersonListView, self).get_context_data(**kwargs) - context['tags'] = Person.tags.all() return context |