﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
6618	Make use of templates in feeds.py optional	christoph.neuroth@…		"When creating a feed you have to specify title, description and link for each item. For the link this is really easy by overriding the item_link method, which is called for every item.
{{{
def item_link(self, obj):
  return '/feed/'+str(obj.id)
}}}

However for the description and title fields you have to create two template files which in most cases will consist of only a single line of code(""{{ obj.foo }}""). IMHO this is extremely ugly - it would be much nicer if you could just overide one method similar to item_link:
{{{
def item_title(self, obj):
  return obj.header
def item_description(self, obj):
  return obj.teaser
}}}"		closed	contrib.syndication	dev		fixed		albrecht.andi@…	Accepted	1	0	0	0	0	0
