Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleCheck 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
titlePrint only parts of an array
Code Block
<!-- Prints the first name of the assignee, instead of the whole name -->
{{{before (split issue.assignee ' ') 1}}}