> Exception Type: ImproperlyConfigured at /feeds/latest/ > Exception Value: Give your Entry class a get_absolute_url() method, or > define an item_link() method in your Feed class.
Have you tried the obvious - do what the Exception tells you and add a "get_absolute_url" method to the model of the objects published on the feed, or an item_link in your Feed class? from http://docs.djangoproject.com/en/dev/ref/contrib/syndication/ """ To specify the contents of <link>, you have two options. For each item in items(), Django first tries calling the item_link() method on the Feed class. In a similar way to the title and description, it is passed it a single parameter, item. If that method doesn't exist, Django tries executing a get_absolute_url() method on that object. Both get_absolute_url() and item_link() should return the item's URL as a normal Python string. As with get_absolute_url(), the result of item_link() will be included directly in the URL, so you are responsible for doing all necessary URL quoting and conversion to ASCII inside the method itself. """ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.