Ticket #16661: 16661.patch
File 16661.patch, 787 bytes (added by , 13 years ago) |
---|
-
docs/topics/db/models.txt
363 363 :class:`~django.db.models.ManyToManyField` (``toppings`` in the example above) 364 364 be a plural describing the set of related model objects. 365 365 366 It doesn't matter which model gets the 367 :class:`~django.db.models.ManyToManyField`, but you only need it in one of the 368 models -- not in both. 366 You only need the :class:`~django.db.models.ManyToManyField` in one of the 367 models, not in both. It doesn't matter which one. 369 368 370 369 Generally, :class:`~django.db.models.ManyToManyField` instances should go in the 371 370 object that's going to be edited in the admin interface, if you're using