Hey Guys,
Got a very strange thing going on with the RSS feed framework in
Django. Here is the code for one feed:
*********
class LatestNotes(Feed):
title = "Title"
link = "Link"
description = "Description"
def items(self):
return Note.objects.order_by('-created')[:10]
**********
When I view the feed, it only returns one result but when I do it as a
normal view, it shows all 10 results?
Any ideas why this would be happening?
Cheers,
Chris
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---