How to split a form into several divs but the first div has another form?

page scheme

here in the picture, the first form is highlighted in black, the second in red. divs are highlighted in orange.

So, I need something like that:

<form1>
    <div>
        text area
        submit
        <form2>
            text area
        </form2>
    </div>
    <div>
        text area
    </div>
</form1>

But that does not work because django just makes the second form a part of the first one

Back to Top