blob: a8edbfa128961b16c89c3db5369706379e5c5c8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
from django.views.generic import ListView
from django.views.generic.detail import DetailView
from django.views.generic.dates import DateDetailView
from django.urls import reverse
from django.contrib.syndication.views import Feed
from django.apps import apps
from django.shortcuts import get_object_or_404
from django.conf import settings
from django.db.models import Q
from utils.views import PaginatedListView
from .models import Episode, Podcast
class PodcastListView(PaginatedListView):
"""
Return a list of Episodes in reverse chronological order
"""
model = Podcast
template_name = "podcasts/list.html"
queryset = Episode.objects.filter(podcast=1).filter(status__exact=1).order_by('-pub_date')
def get_context_data(self, **kwargs):
context = super(PodcastListView, self).get_context_data(**kwargs)
context['breadcrumbs'] = ['podcast',]
context['podcast'] = Podcast.objects.get(title="The Lulu & Birdie Podcast")
return context
|