Print
Template Control Flow

MVEL templates support If-Then-Else control flow to produce highly dynamic content from your templates. The full MVEL expression language can be used in the if, elseif expressions. For example:

@if{account.active}
  Your account is currently active!
@elseif{account.status == Account.SUSPENDED}
  Your account has been suspended, please contact customer support
@else{}
  Your account is not active.
@end{}

Note: All code blocks must be terminated with @end{} orb-tag

Powered by Atlassian Confluence