<tml:if>

Description:
Simple condition tag that only displays its content when the condition defined is true. It receives all condition attributes.
Attributes:
General WebTML attributes are hidden -> show general attributes
Name Value(s) Version Usage

Details:
Examples:

    <tml:if condition="...">

      <tml:then>
        This code is executed when the if-condition is true.
      </tml:then>
      <tml:elseif condition="...">
        This code is executed when the elseif-condition is true.
      </tml:elseif>
      <tml:elseif condition="...">
        This code is executed when the elseif-condition is true.
      </tml:elseif>
      <tml:else>
        This code is executed when neither the if-condition nor the elseif-condition is true.
      </tml:else>
    </tml:if>