Hi all,
I want to add the geo tag (with latitude and longitude) to each item
of my feeds:
<georss:point>45.256 -71.92</georss:point>
I am using the feeds framework:
class LatestEvents(Feed):
title = "Latest Events"
link = "/events/"
def items(self):
return Event.objects.order_by('-start_date')[:5]
Is there any way to add the new node to each item returned by
"items()"
Thank you.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---