Author: mtredinnick Date: 2011-08-21 18:07:19 -0700 (Sun, 21 Aug 2011) New Revision: 16639
Modified: django/trunk/docs/topics/db/models.txt Log: Made documentation of ManyToManyField placement clearer (kind of). Inspired by ticket #16661. Modified: django/trunk/docs/topics/db/models.txt =================================================================== --- django/trunk/docs/topics/db/models.txt 2011-08-22 00:48:53 UTC (rev 16638) +++ django/trunk/docs/topics/db/models.txt 2011-08-22 01:07:19 UTC (rev 16639) @@ -363,9 +363,9 @@ :class:`~django.db.models.ManyToManyField` (``toppings`` in the example above) be a plural describing the set of related model objects. -It doesn't matter which model gets the -:class:`~django.db.models.ManyToManyField`, but you only need it in one of the -models -- not in both. +It doesn't matter which model has the +:class:`~django.db.models.ManyToManyField`, but you should only put it in one +of the models -- not both. Generally, :class:`~django.db.models.ManyToManyField` instances should go in the object that's going to be edited in the admin interface, if you're using -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
