diff options
Diffstat (limited to 'app/posts/views.py')
-rw-r--r-- | app/posts/views.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app/posts/views.py b/app/posts/views.py index 2e5c95a..a3f1a1f 100644 --- a/app/posts/views.py +++ b/app/posts/views.py @@ -10,30 +10,32 @@ from .models import Post from taxonomy.models import Category -class PostList(PaginatedListView): +class GuideListView(PaginatedListView): """ Return a list of Entries in reverse chronological order """ model = Post + template_name = "posts/guide_base.html" def get_queryset(self): - queryset = super(PostList, self).get_queryset() + queryset = super(GuideListView, self).get_queryset() return queryset.filter(status__exact=1).order_by('-pub_date').prefetch_related('location').prefetch_related('featured_image') -class GuidesListView(PostList): +class ReviewsListView(GuideListView): + template_name = "posts/post.html" def get_queryset(self): - queryset = super(GuidesListView, self).get_queryset() + queryset = super(ReviewsListView, self).get_queryset() return queryset.filter(post_type__in=[0,1]).filter(status__exact=1).order_by('-pub_date').prefetch_related('location').prefetch_related('featured_image') def get_context_data(self, **kwargs): - context = super(GuidesListView, self).get_context_data(**kwargs) + context = super(ReviewsListView, self).get_context_data(**kwargs) context['archive_type'] = 'Field Tests' return context -class EssayListView(PostList): +class EssayListView(GuideListView): template_name = "posts/essay_list.html" def get_queryset(self): |