Smart Sections
Last updated
Name: {name}
Type: {type}
{#$ type == 'student'}
User {name} claims that is student
{/}Name: {name}
Type: {type}
Age: {age}
{#$ type == 'student' && age > 18}
Member: {name} claims that is adult student
{/}
{#$ type == 'student' || type == 'employed'}
Member: {name} claims that is student or employed
{/}
{#$ age < 18}
Member is underage
{/}
{#$ type != 'student'}
Member is not a student!
{/}{name} // Field name (assuming it's 'Alicia, Mark, Alfred')
{#$ name | contains:'Ali' }
This part ofdocument will appear if text contains 'Ali' (It will show as 'Ali' is part of 'Alicia, Mark, Alfred')
{/}
{#$ name | notcontains:'Ali' }
This part of document will appear if text does not contains 'Ali'
{/}
{#$ name | contains:'John' }
This part of document will appear if text contains 'John'
{/}
{#$ name | notcontains:'John' }
This part of document will appear if text does not contains 'John'
{/}