langs.html5ftl.conditionalBlock.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbpm-gwt-form-exporter-freemarker Show documentation
Show all versions of jbpm-gwt-form-exporter-freemarker Show documentation
jBPM Form Exporter for Freemarker (both HTML4 and HTML5) for form representational API
The newest version!
#set ($ifStart = "<#if")
#set ($ifEnd = "#if>")
#set ($else = "<#else>")
$ifStart ${item.condition}>
#if ($condition.ifBlock)
${language.translateItem($condition.ifBlock)}
#end
#if ($condition.elseBlock)
$else
${language.translateItem($condition.elseBlock)}
#end
$ifEnd