diff options
Diffstat (limited to 'app/jrnl/views.py')
-rw-r--r-- | app/jrnl/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/jrnl/views.py b/app/jrnl/views.py index 59fff7a..28d44a1 100644 --- a/app/jrnl/views.py +++ b/app/jrnl/views.py @@ -17,7 +17,7 @@ class EntryList(PaginatedListView): Return a list of Entries in reverse chronological order """ queryset = Entry.objects.filter(status__exact=1).order_by('-pub_date').select_related() - template_name = "archives/writing.html" + template_name = "archives/jrnl.html" class EntryCountryList(PaginatedListView): |