Changes between Initial Version and Version 3 of Ticket #29591


Ignore:
Timestamp:
Jul 24, 2018, 3:05:48 PM (6 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29591

    • Property Resolutionfixed
    • Property Status newclosed
  • Ticket #29591 – Description

    initial v3  
    11In 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{{{
    33Create a couple of Publications:
    44
     
    1818>>> a2.publications.add(p1, p2)
    1919>>> a2.publications.add(p3)
     20}}}
Back to Top