I’m not quite sure I’m following what you mean by this.
If you’re saying that you want multiple formsets for TechniqueSubCategory
, where each formset is a set of TechniqueSubCategory
that are related to an individual TechniqueCategory
, and that you want multiple TechniqueCategory
on a page, then what you’re looking for is known as a “nested formset”.
Or, more graphically, I’m understanding you to be looking for something like this:
Technique Category 1
Technique field 1
Technique field 2
Sub Category 1
Sub Category 2
Sub Category 3
Technique Category 2
Technique field 1
Technique field 2
Sub Category 4
Sub Category 5
Sub Category 6
If I’ve got the right impression of your situation, then I suggest you take a look at Multiples of one formset - #12 by KenWhitesell. You can also search here for other references to nested formsets, there have been a few discussions raise on this topic.
(On the other hand, if I’m completely missing what you’re trying to do here, some further details or examples of what you’re trying to achieve may help.)