Is there a way to get all child classes of a django multi table inheritance?
Example:
class Parent(models.Model):
pass
class ChildOne(Parent):
pass
class ChildTwo(Parent):
pass
I need a classmethod which returns [ChildOne, ChildTwo]
BTW: This question is not about automatic down casting :-)