38 lines
2.2 KiB
Smarty
38 lines
2.2 KiB
Smarty
{*+**********************************************************************************
|
|
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.2
|
|
|
|
* ("License.txt"); 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.
|
|
|
|
************************************************************************************}
|
|
|
|
|
|
|
|
{literal}
|
|
|
|
<div class="cp-table-container" ng-show="projecttaskrecords">
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-hover table-condensed table-detailed dataTable no-footer">
|
|
|
|
<thead>
|
|
|
|
<tr class="listViewHeaders">
|
|
|
|
<th ng-hide="header=='id'" ng-repeat="header in projecttaskheaders" nowrap="" class="medium">
|
|
|
|
<a href="javascript:void(0);" class="listViewHeaderValues" data-nextsortorderval="ASC" data-columnname="{{header}}" translate="{{header}}">{{header}} </a>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr class="listViewEntries" ng-repeat="record in projecttaskrecords">
|
|
|
|
<td ng-hide="header=='id'" ng-repeat="header in projecttaskheaders" class="listViewEntryValue medium" nowrap="" style='cursor: pointer;' ng-mousedown="ChangeLocation(record, 'ProjectTask')">
|
|
|
|
<ng-switch on="record[header].type">
|
|
|
|
<a ng-href="index.php?module=ProjectTask&view=Detail&id={{record.id}}"></a>
|
|
|
|
<span ng-switch-default>{{record[header]}}</span>
|
|
|
|
</ng-switch>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<a ng-if="!tasksLoaded && !noTasks" ng-click="loadProjectTaskPage(projectTaskPageNo)">{{'more'|translate}}...</a>
|
|
|
|
<p ng-if="tasksLoaded" class="text-muted">{{'No Tasks'|translate}}</p>
|
|
|
|
<p ng-if="!tasksLoaded && noTasks" class="text-muted">{{'No more Tasks'|translate}}</p>
|
|
|
|
{/literal}
|
|
|