Changeset 8325 for django/trunk/tests/modeltests/many_to_many
- Timestamp:
- 08/12/08 09:15:38 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/modeltests/many_to_many/models.py
r7622 r8325 2 2 5. Many-to-many relationships 3 3 4 To define a many-to-many relationship, use ManyToManyField().5 6 In this example, an article can be published in multiple publications,7 and a publication has multiple articles.4 To define a many-to-many relationship, use ``ManyToManyField()``. 5 6 In this example, an ``Article`` can be published in multiple ``Publication`` 7 objects, and a ``Publication`` has multiple ``Article`` objects. 8 8 """ 9 9
