Conveniently, a django.forms.Form object is little more than a collection of fields, meaning that you can concatenate outputs to construct a single form in html, like so: <form action="" method="POST"> {{ form1.as_ul }} {{ form2.as_ul }} <input type="submit" /> </form> ...
Read full entry