In my model, I have a Condition class and two subclasses of StringCondition and NumCondition. The user will view / edit / order conditions as one list.
Is there a way to implement this using the Django model form set? I am currently using two separate forms (one for NumConditions, one for StringConditions), but it is a pain to manually interlace the ordering (so that a number condition can appear between two string conditions, etc.).
source
share