You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yamamoto edited this page Dec 2, 2016
·
5 revisions
<@IF:[*template:is(0)*] >
Template is blank
<@ELSE>
Template is [*template:templatename*]
<@IF:[*description:isNotEmpty*]>
[*description*]
<@ENDIF>
<@ENDIF>
or
<!--@IF:[*template:is(0)*] -->
Template is blank
<!--@ELSE-->
Template is [*template:templatename*]
<!--@IF:[*description:isNotEmpty*]-->
[*description*]
<!--@ENDIF-->
<!--@ENDIF-->
or
<!--@IF:[*template:is(0)*] >
Template is blank
<@ELSE>
Template is [*template:templatename*]
<@IF:[*description:isNotEmpty*]>
[*description*]
<@ENDIF>
<@ENDIF-->
(For html editor)
It is useful for creating pages with complicated structure such as management screen. Previously, when such a branching process was necessary, it was necessary to create many chunks.
Determine the presence or absence of a value. Therefore, a combination with a modifier is effective.