<@adminDashboardWidget title='#i18n{workflow.dashboard.workflowList}' id='workflow_dashboard' url=url > <@table striped=true condensed=true responsive=false hover=false > <@tr> <@th>#i18n{workflow.dashboard.row_name} <@th>#i18n{workflow.dashboard.row_actions} <#list workflow_list as workflow> <@tr> <@td> ${workflow.name} <#if !workflow.enabled> <@icon style='times' class='fa-fw text-danger' title='#i18n{portal.util.labelDisabled}' /> <@td> <@aButton href='jsp/admin/plugins/workflow/ModifyWorkflow.jsp?id_workflow=${workflow.id}' hideTitle=['all'] size='sm' buttonIcon='pencil' title='#i18n{workflow.manage_workflow.title_modify}' /> <@aButton href='jsp/admin/plugins/workflow/DoCopyWorkflow.jsp?id_workflow=${workflow.id}' hideTitle=['all'] size='sm' buttonIcon='copy' title='#i18n{workflow.manage_workflow.title_copy}' /> <@aButton href='jsp/admin/plugins/workflow/ConfirmRemoveWorkflow.jsp?id_workflow=${workflow.id}' hideTitle=['all'] size='sm' buttonIcon='trash' color='danger' title='#i18n{workflow.manage_workflow.title_delete}' /> <#if workflow.enabled> <@aButton href='jsp/admin/plugins/workflow/DoDisableWorkflow.jsp?id_workflow=${workflow.id}' hideTitle=['all'] size='sm' buttonIcon='stop' color='danger' title='#i18n{workflow.manage_workflow.title_disable}' /> <#else> <@aButton href='jsp/admin/plugins/workflow/DoEnableWorkflow.jsp?id_workflow=${workflow.id}' hideTitle=['all'] size='sm' buttonIcon='play' color='success' title='#i18n{workflow.manage_workflow.title_enable}' />