diff --git a/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_group.html b/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_group.html index 45d2d2cdb..02aacaf9f 100644 --- a/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_group.html +++ b/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_group.html @@ -22,7 +22,9 @@
- ${group.title} <#if indexIteration > 0>(${indexIteration+1}) + <#if !group.title?ends_with('hidden')> + ${group.title} <#if indexIteration > 0>(${indexIteration+1}) + <#if group.description!=''>
${group.description}
diff --git a/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_step.html b/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_step.html index 7a7c17e29..eb4d3414e 100644 --- a/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_step.html +++ b/webapp/WEB-INF/templates/skin/plugins/forms/composite_template/view_step.html @@ -1,5 +1,7 @@
-

${step.title}

+ <#if !step.title?ends_with('hidden')> +

${step.title}

+
${stepContent} <#if display_captcha>${captcha} diff --git a/webapp/WEB-INF/templates/util/plugins/forms/breadcrumb/horizontal_breadcrumb.html b/webapp/WEB-INF/templates/util/plugins/forms/breadcrumb/horizontal_breadcrumb.html index be1682431..46eb07892 100644 --- a/webapp/WEB-INF/templates/util/plugins/forms/breadcrumb/horizontal_breadcrumb.html +++ b/webapp/WEB-INF/templates/util/plugins/forms/breadcrumb/horizontal_breadcrumb.html @@ -1,11 +1,12 @@ + <#if list_steps?has_content>