Jack Appleby
Results
1
issues of
Jack Appleby
I have a few models that inherit from a parent one, for example: ``` class ContentItem(models.Model): class Meta: ordering = ['position'] content_group = models.ForeignKey(ContentGroup) position = PositionField(collection='content_group', parent_link='contentitem_ptr') class Text(ContentItem):...