Maciej Bliziński wrote:
> Hello djangoers,
> 
> Having documents and tags with many-to-many relationship, I'd like to
> take a tag and find its related tags. In other words, what other tags
> are associated with documents that are associated to my tag?
> 
> A small(est I could make it) example:
> 
> myapp/models.py:
> 
> -------------------------------------------------------------------
> from django.db import models
> 
> class Tag(models.Model):
>     name = models.CharField(maxlength = 200)
> 
> class Document(models.Model):
>     content = models.TextField()
>     tags = models.ManyToManyField(Tag)
> -------------------------------------------------------------------

It can look like this:

Tag.objects.filter(document__tags__name='mytag').exclude(name='mytag')

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to