This example shows you how to organize the forms side by side using the variable "self.formset".
#Add the name of the forms variables inside tuples organize these forms side by side
self.formset = [ ('_firstname','_middlename', '_lastname'),
'_fullname', (' ' ,'_button', ' '), ' ']Notes:
- Forms vertically organized - use list.
- Forms horizontally organized - use a tuple.
