Check on field values and print different outcomes
Code Block
<!-- Returns depending on the value of a multiselectfield of an issue -->
{{#eq issue.customfield_11111 "Yes"}}
This is the Yes block
{{/eq}}
{{#eq issue.customfield_11111 "No"}}
This is the no block
{{/eq}}
Expand
title
Print only parts of an array
Code Block
<!-- Prints the first name of the assignee, instead of the whole name -->
{{{before (split issue.assignee ' ') 1}}}