This is not an issue but more of a question.
How would you deal with the case of having two separate forms and two models but sharing the same CreateView?
For example if you have two models that inherit one abstract model, and in the CreateView it shows both forms to the the user, and which ever form the user submits, it should create an instance of its associated model.
Is this doable with MultiForm?