Hello peeps
I've got a news applications that is accepting comments on the posts.
I need to build a feed of the comments so I can monitor them and answer any
questions asked in the comments.
So, in my main URLS file I'm doing this
from django.contrib.comments.feeds import LatestFreeCommentsFeed
feeds = {
'latestcomments': LatestFreeCommentsFeed,
}
urlpatterns += patterns('',
(r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
{'feed_dict': feeds}),
)
Now when people are adding a comment to a news item, I'm getting an updated
feed. But it shows as FreeComment Object instead of the comment text.
Can anyone point me in the right direction here? I think I'm getting myself
a bit confused.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---