Hi,
in manage-task-dialog.jsp i have created an ftl file where i have to get the id of the current pooled task.
I know how to get all the pooled tasks but i don't know how to extract the current task:
<table cellspacing=0 cellpadding=2>
<tr>
<th>ID</th>
<th>Type</th>
<th>Name</th>
<th>test</th>
<tr>
<#list workflow.pooledTasks as t>
<tr>
<td>${t.id}</td>
<td>${t.type}</td>
<td>${t.name}</td>
</tr>
</#list>
</table>
can you tell me how im going to do?
tnx