Tagged Questions
1
vote
1answer
353 views
Querying django ManyToMany
I have got
Foo <=> FooGroup <=> Bar
relation, where <=> stands for ManyToMany field.
How do I retrieve all the Foos for a specific Bar instance?
0
votes
1answer
50 views
Django ManyToManyField options
It is possible to give blank=True, null=True to ManyToManyField without having problems?
Or maybe I doing something wrong with my code..