In your urlpatterns, you are passing a string for the value of
feed_dict ("feeds"). You need to pass the actual dictionary object
that you setup for yourself:
...{ 'feed_dict' : feeds }
Cheers
-Brian
On Mar 2, 10:39 am, Florian Lindner <[EMAIL PROTECTED]> wrote:
> Hello,
> I try to create an RS
Hello,
I try to create an RSS feed for my blog.
I have in my application urls.py:
from feeds import *
feeds = { 'latest' : LatestEntries, }
urlpatterns = patterns("",
[...],
(r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed',
{'feed_dict':'feeds'})
)
in feeds.py:
from djan
2 matches
Mail list logo