[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 {*+*********************************************************************************** 2 * The contents of this file are subject to the vtiger CRM Public License Version 1.0 3 * ("License"); You may not use this file except in compliance with the License 4 * The Original Code is: vtiger CRM Open Source 5 * The Initial Developer of the Original Code is vtiger. 6 * Portions created by vtiger are Copyright (C) vtiger. 7 * All Rights Reserved. 8 *************************************************************************************} 9 {strip} 10 <br> 11 <div class="row-fluid"> 12 <table class="table table-bordered table-condensed listViewEntriesTable"> 13 <thead> 14 <tr class="listViewHeaders"> 15 <th width="10%">{vtranslate('LBL_ACTIVE',$QUALIFIED_MODULE)}</th> 16 <th width="30%">{vtranslate('LBL_TASK_TYPE',$QUALIFIED_MODULE)}</th> 17 <th>{vtranslate('LBL_TASK_TITLE',$QUALIFIED_MODULE)}</th> 18 </tr> 19 </thead> 20 <tbody> 21 {foreach from=$TASK_LIST item=TASK} 22 <tr class="listViewEntries"> 23 <td><input type="checkbox" class="taskStatus" data-statusurl="{$TASK->getChangeStatusUrl()}" {if $TASK->isActive()} checked="" {/if} /></td> 24 <td>{vtranslate($TASK->getTaskType()->getLabel(),$QUALIFIED_MODULE)}</td> 25 <td>{$TASK->getName()} 26 <div class="pull-right actions"> 27 <span class="actionImages"> 28 <a data-url="{$TASK->getEditViewUrl()}"> 29 <i class="icon-pencil alignMiddle" title="{vtranslate('LBL_EDIT',$QUALIFIED_MODULE)}"></i> 30 </a> 31 <a class="deleteTask" data-deleteurl="{$TASK->getDeleteActionUrl()}"> 32 <i class="icon-trash alignMiddle" title="{vtranslate('LBL_DELETE',$QUALIFIED_MODULE)}"></i> 33 </a> 34 </span> 35 </div> 36 </td> 37 <tr> 38 {/foreach} 39 </tbody> 40 </table> 41 {if empty($TASK_LIST)} 42 <table class="emptyRecordsDiv"> 43 <tbody> 44 <tr> 45 <td> 46 {vtranslate('LBL_NO_TASKS_ADDED',$QUALIFIED_MODULE)} 47 </td> 48 </tr> 49 </tbody> 50 </table> 51 {/if} 52 </div> 53 {/strip}
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |