On 2/22/07, Sandro Dentella <[EMAIL PROTECTED]> wrote:
>
> The reverse is not true, you don't get a widget for the user in the form
> created for Group.
>
> Why that?
Mostly historical. In the bad old days, the Django query syntax didn't
support queries across the reverse direction of relat
Here again...
Im trying to understand if there is a real need to brake symmetry in a
ManyToMany relation, and how can that be bypassed creating a model.
Let's use User/Group models.
class User(model.Model):
...
groups = models.ManyToManyField(Group,...)
creating a form u