Changes between Initial Version and Version 3 of Ticket #29591
- Timestamp:
- Jul 24, 2018, 3:05:48 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29591
- Property Resolution → fixed
- Property Status new → closed
-
Ticket #29591 – Description
initial v3 1 1 In https://docs.djangoproject.com/en/2.0/topics/db/examples/many_to_many/ , the text says there are two Publication objects ("a couple" and "both"), but the code example creates three, and uses three. 2 2 {{{ 3 3 Create a couple of Publications: 4 4 … … 18 18 >>> a2.publications.add(p1, p2) 19 19 >>> a2.publications.add(p3) 20 }}}