-from django.contrib.syndication.feeds import Feed
+from django.contrib.syndication.views import Feed
from django.utils.feedgenerator import Atom1Feed
from blog.models import BlogEntry
from django.conf import settings
def items(self):
try:
- return BlogEntry.objects.all().order_by('-publish_date')[:20]
+ return BlogEntry.objects.filter(islive=True).order_by('-publish_date')[:20]
except:
- return BlogEntry.objects.all().order_by('-publish_date')
+ return BlogEntry.objects.filter(islive=True).order_by('-publish_date')
def author_name(self, obj):
return "Brett Parker"