diff --git a/ccm-cms-types-decisiontree/web/themes/freemarker/ccm-cms-types-decisiontree.ftl b/ccm-cms-types-decisiontree/web/themes/freemarker/ccm-cms-types-decisiontree.ftl new file mode 100644 index 000000000..dd6754333 --- /dev/null +++ b/ccm-cms-types-decisiontree/web/themes/freemarker/ccm-cms-types-decisiontree.ftl @@ -0,0 +1,47 @@ +<#ftl ns_prefixes={ +"bebop":"http://www.arsdigita.com/bebop/1.0", +"cms":"http://www.arsdigita.com/cms/1.0", +"nav":"http://ccm.redhat.com/navigation", +"ui": "http://www.arsdigita.com/ui/1.0"} +> + +<#function getCurrentSection item> + <#return item["./sections[title]/*"]> + + +<#function getParameters item> + <#return item["./parameters"]> + + +<#function getSectionOid section> + <#return section["./@oid"]> + + +<#function getSectionUrl section> + <#return section["./customInfo/@currentURL"]> + + +<#function getSectionTitle section> + <#return section["./title"]> + + +<#function getSectionInstructions section> + <#return section["./instructions"]> + + +<#function getSectionOptions section> + <#return section["./sectionOptions"]> + + +<#function getSectionOptionOid option> + <#return section["./@oid"]> + + +<#function getSectionOptionParameterName option> + <#return section["./parameterName"]> + + +<#function getSectionOptionValue option> + <#return section["./value"]> + +