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
Id | Title | WorkItemType | Child |
---|---|---|---|
10 | 🍇Story 10 | User Story | 300 |
20 | 🍈Story 20 | User Story | 400 |
Other work items
Id | Title | WorkItemType | Description |
---|---|---|---|
300 | Security Review | Task | Hardened aggainst XSS attacks |
400 | Security Review | Task | No findings |
Result
Story: 🍇Story 10
Security review notes
Hardened aggainst XSS attacks
Story: 🍈Story 20
Security review notes
No findings