Attached is a patch to check if the form element is a fieldset and then loop through the fields contained in it. The outcome will be a template array variable with the child fields.

Example:

Content Type Setup
--title
--body
--group_bio
----name
----age
----city

The template will have the following vars
$title
$body
$group_bio = array(
--'name' => $name
--'age' => $age
--'city' => $city
)

Comments

andrewko’s picture

StatusFileSize
new865 bytes

Sorry that patch was specific to my project. Attached is a generic one.

andrewko’s picture

Issue summary: View changes

fixed array in example