From 1f1f60d12f78ee68d59b577fdb6a31857b1d0f44 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 18 Nov 2012 18:07:38 -0500 Subject: [PATCH] Fixed #19306 - Improved syndication example. Thanks brycenesbitt for the report. --- docs/ref/contrib/syndication.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt index 27b8fc0875..2418dba8ef 100644 --- a/docs/ref/contrib/syndication.txt +++ b/docs/ref/contrib/syndication.txt @@ -53,6 +53,7 @@ This simple example, taken from `chicagocrime.org`_, describes a feed of the latest five news items:: from django.contrib.syndication.views import Feed + from django.core.urlresolvers import reverse from chicagocrime.models import NewsItem class LatestEntriesFeed(Feed): @@ -69,6 +70,10 @@ latest five news items:: def item_description(self, item): return item.description + # item_link is only needed if NewsItem has no get_absolute_url method. + def item_link(self, item): + return reverse('news-item', args=[item.pk]) + To connect a URL to this feed, put an instance of the Feed object in your :doc:`URLconf `. For example::