Django Feeds/Syndication - The functions item_title and item_description do not effect whats display
- by Sean
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 those strings are never used, even when not using a template whats used is the templates you define.
Am I missing something?