Ive defined a a class that inherits from django.contrib.syndication.feeds.Feed
class Rss(Feed):
...
def item_title(self, item):
return "Hello"
def item_description(self, item):
return "Test"
The issue is whats returned from the methods item_title and item_description is not what is used in the feed, even when not using a template.
Am I missing something?