Active Flows
[#assign flows = this.flowList]
[#if flows?has_content]
[#list flows as item]
-
[#if item.lastParticipant?has_content]
Workflow
[#else]
New workflow
[/#if]
${item.flowName}, started by ${this.getUser(item.attributes.activator)!"unknown"} with assigned id ${item.id}
:: ${item.lastModified!""} User ${this.getUser(item.attributes.userName)!"unknown"} has
[#if item.attributes.action?has_content]
${item.attributes.action}ed
[#else]
requested ${item.flowName}
[/#if]
of the ${item.attributes.path!""}
[#if item.attributes.recursive?has_content && item.attributes.recursive == 'true']
including sub-pages
[/#if]
[#if item.attributes.comment?has_content]
:: Comment by ${this.getUser(item.attributes.userName)}: ${item.attributes.comment}
[/#if]
[#if item.attributes.assignTo?has_content]
:: Item has been re-assigned to ${this.getUser(item.attributes.assignTo)}
[/#if]
[/#list]
[#else]
There are no running workflows at the moment
[/#if]