Django Feeds/Syndication - The functions item_title and item_description do not effect whats display
Posted
by Sean
on Stack Overflow
See other posts from Stack Overflow
or by Sean
Published on 2010-05-12T19:09:57Z
Indexed on
2010/05/12
19:14 UTC
Read the original article
Hit count: 319
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?
© Stack Overflow or respective owner