Changes between Initial Version and Version 2 of Ticket #11738
- Timestamp:
- Aug 18, 2009, 1:26:13 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11738 – Description
initial v2 3 3 4 4 All that is required to produce a recursive many2many is the following code: 5 {{{ 5 6 from django.db import models 6 7 … … 12 13 def __unicode__(self): 13 14 return self.name 14 15 }}} 15 16 When I try this exact same code in my application, 16 17