summaryrefslogtreecommitdiff
path: root/app/pages/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/pages/views.py')
-rw-r--r--app/pages/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/pages/views.py b/app/pages/views.py
index cb91f9b..d876a49 100644
--- a/app/pages/views.py
+++ b/app/pages/views.py
@@ -34,7 +34,7 @@ class HomePageList(DetailView):
def get_context_data(self, **kwargs):
# Call the base implementation first to get a context
context = super(HomePageList, self).get_context_data(**kwargs)
- context['object_list'] = Post.objects.filter(post_type=PostType.JRNL).filter(status__exact=1).order_by('-pub_date').exclude().select_related('location').select_related('featured_image')[1:9]
+ #context['object_list'] = Post.objects.filter(post_type=PostType.JRNL).filter(status__exact=1).order_by('-pub_date').exclude().select_related('location').select_related('featured_image')[1:9]
return context