Hello,

I can't figure out how to retrieve tags for specific models i.e., I
would like to show tags for entries if I'm on a blog/entry page, tags
for links if I'm on a blog/links page, etc. If I use {{ entry.tags }}
in the templates I get duplicate tags and if an entry has more than
one tag those tags wind up on the same line e.g.,

audio, audiodev, audiotrack,
audio, audiodev,
audio,

I've been trying to query the TaggedItems model in order to get the
related content_type i.e., entry, link, etc. in order to get the
related tags individually but I don't understand how to a) get the
tags, and b) remove duplicates. Essentially I want this
TaggedItem.objects.filter(content_type='entry') and then to be able to
remove duplicates.

TaggedItems has these relationships:

    tag          = models.ForeignKey(Tag, verbose_name=_('tag'),
related_name='items')
    content_type = models.ForeignKey(ContentType, verbose_name=_
('content type'))
    object_id    = models.PositiveIntegerField(_('object id'),
db_index=True)
    object       = generic.GenericForeignKey('content_type',
'object_id')

Thanks for any help,

Jason

--

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.


Reply via email to