Files
CRM/layouts/vlayout/modules/Settings/Workflows/TasksList.tpl
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

53 lines
2.0 KiB
Smarty

{*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************}
{strip}
<br>
<div class="row-fluid">
<table class="table table-bordered table-condensed listViewEntriesTable">
<thead>
<tr class="listViewHeaders">
<th width="10%">{vtranslate('LBL_ACTIVE',$QUALIFIED_MODULE)}</th>
<th width="30%">{vtranslate('LBL_TASK_TYPE',$QUALIFIED_MODULE)}</th>
<th>{vtranslate('LBL_TASK_TITLE',$QUALIFIED_MODULE)}</th>
</tr>
</thead>
<tbody>
{foreach from=$TASK_LIST item=TASK}
<tr class="listViewEntries">
<td><input type="checkbox" class="taskStatus" data-statusurl="{$TASK->getChangeStatusUrl()}" {if $TASK->isActive()} checked="" {/if} /></td>
<td>{vtranslate($TASK->getTaskType()->getLabel(),$QUALIFIED_MODULE)}</td>
<td>{$TASK->getName()}
<div class="pull-right actions">
<span class="actionImages">
<a data-url="{$TASK->getEditViewUrl()}">
<i class="icon-pencil alignMiddle" title="{vtranslate('LBL_EDIT',$QUALIFIED_MODULE)}"></i>
</a>&nbsp;&nbsp;
<a class="deleteTask" data-deleteurl="{$TASK->getDeleteActionUrl()}">
<i class="icon-trash alignMiddle" title="{vtranslate('LBL_DELETE',$QUALIFIED_MODULE)}"></i>
</a>
</span>
</div>
</td>
<tr>
{/foreach}
</tbody>
</table>
{if empty($TASK_LIST)}
<table class="emptyRecordsDiv">
<tbody>
<tr>
<td>
{vtranslate('LBL_NO_TASKS_ADDED',$QUALIFIED_MODULE)}
</td>
</tr>
</tbody>
</table>
{/if}
</div>
{/strip}