Show content from specific child task

For each user story we want to show the Description of the "Security review" child task.

You can also output other link types. See these docs for a complete list of link types.

Template

{{#workItems}}

### Story: {{{ field 'Title' }}}

{{#links 'Child' }}
{{#if-field 'Title' value='Security Review'}}

**Security review notes**

{{{field 'Description'}}}

{{/if-field}}
{{/links}}

{{/workItems}}

Work items

IdTitleWorkItemTypeChild
10🍇Story 10User Story300
20🍈Story 20User Story400

Other work items

IdTitleWorkItemTypeDescription
300Security ReviewTaskHardened aggainst XSS attacks
400Security ReviewTaskNo findings

Result

Story: 🍇Story 10

Security review notes

Hardened aggainst XSS attacks

Story: 🍈Story 20

Security review notes

No findings