Ticket #16661: 16661.patch

File 16661.patch, 787 bytes (added by Aymeric Augustin, 13 years ago)
  • docs/topics/db/models.txt

     
    363363:class:`~django.db.models.ManyToManyField` (``toppings`` in the example above)
    364364be a plural describing the set of related model objects.
    365365
    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.
     366You only need the :class:`~django.db.models.ManyToManyField` in one of the
     367models, not in both. It doesn't matter which one.
    369368
    370369Generally, :class:`~django.db.models.ManyToManyField` instances should go in the
    371370object that's going to be edited in the admin interface, if you're using
Back to Top