List<WizardPageSection> sections = new ArrayList<WizardPageSection>();
FieldModel<String> projectName = model.getProjectName();
sections.add(new StringFieldSection(this, projectName));
WizardPageSection radios = createRadioGroupsSection(this);
if (radios!=null) {
sections.add(radios);
}
for (FieldModel<String> f : model.stringInputs) {