Use a sheet.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?xml version="1.0" encoding="utf-8"?> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"> <f:layout name="Content" /> <f:section name="Configuration"> <flux:form id="testsheet"> <flux:form.sheet name="design" label="Design"> <flux:field.input name="one" label="One"/> </flux:form.sheet> <flux:form.sheet name="other" label="Other"> <flux:field.input name="two" label="Two"/> </flux:form.sheet> </flux:form> </f:section> <f:section name="Main"> </f:section> </html> |