Hello,
we are using confluence 5.1.2 to manage our meeting notes. We also use the inline task list feature to create and assign tasks.
Im trying to get a list of all the unfished / unchecked tasks in a certain space.
The Usermacro i did so far:
## Macroname: ShowTaskList
## Body Processing: Escapes
## @noparams
<table border = "1">
<tr>
<td>Pagelink</td>
</tr>
#foreach($page in $space.getHomePage().getDescendents())
#foreach($label in $page.getLabels() )
#if($label.getName() == 'protokoll')
<tr>
<td>
<a href="$page.getUrlPath()">$page.getTitle()</a>
$page.getBodyAsString()
</td>
</tr>
#end
#end
#end
</table>
I can get the body of all meeting notes in a certain space with this macro but i was unable to filter the output for the unsfinished tasks.
The output i like to generate is the unfinished task with the assgined person and the row of the table containing that task.
Regards,
Robin