Displaying all assigned tasks of the current user
This template will display all the tasks assigned to the current user.
How to do it...
1. In the Company Home > Data Dictionary > Presentation Templates space, create a new content. Let's name it task_list.ftl.
2. Add the following template code:
<h3>Tasks of user <u>${person.properties.userName}</u></h3> <table cellspacing=0 cellpadding=2> <tr> <th>Type</th> <th>Name</th> <th>Description</th> <th>Created Date</th> <th>Start Date</th> <th>Due Date</th> <th>Priority</th> <th>% Complete</th> <th>Status</th> <th>Completed</th> </tr> <#list workflow.assignedTasks as t> <tr> <td>${t.type}</td> <td>${t.name}</td> <td>${t.description}</td> <td>${t.properties["cm:created"]?datetime}</td> <td><#if t.properties["bpm:startDate...