Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 483 Bytes

File metadata and controls

19 lines (11 loc) · 483 Bytes

Simple example 3

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.

Simple example 3