Changes between Initial Version and Version 2 of Ticket #11738


Ignore:
Timestamp:
Aug 18, 2009, 1:26:13 PM (15 years ago)
Author:
Alex Gaynor
Comment:

Please use the preview button.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11738 – Description

    initial v2  
    33
    44All that is required to produce a recursive many2many is the following code:
     5{{{
    56from django.db import models
    67
     
    1213    def __unicode__(self):
    1314        return self.name
    14 
     15}}}
    1516When I try this exact same code in my application,
    1617
Back to Top