Re: Linked list of abstract objects

2010-01-18 Thread Alex Robbins
Also, I think you'll need to make those relations to a class that isn't abstract. Right now you have a 'class Meta: abstract=True' That means your model doesn't really exist for the relations to link to. Hope that helps, Alex On Jan 18, 2:26 am, Kerrick wrote: > I'm trying to implement a linked

Re: Linked list of abstract objects

2010-01-18 Thread Gonzalo Delgado
El 18/01/10 05:26, Kerrick escribió: > I'm trying to implement a linked list of abstract objects in my > models.py; however, it is throwing an error. > --activenotes/models.py-- > class Element(models.Model): > class Meta: > abstract = True > prev = models.OneToOneField('Element', n