The complex example of an Atom feed
(http://docs.djangoproject.com/en/1.1/ref/contrib/syndication/#a-complex-example)
is based on a model where it's possible to work out from a single
element in the feed (in this case a Crime), what the driving object is
(a Beat). So there's a many (Crime) to one (Beat) relationship going on.
I'm using the django tags framework on a blog. Each entry has multiple
tags. I'd like to create a feed for each tag.
Following this example, I can't figure out what to put in the title
method - I can get *all* the tags for a given Blog Entry, but not the
one that the feed is for.
Am I missing something? Does anyone have an example of this?
Cheers,
Tim.