EnVisageOnline/Main/Source/EnVisage/Content/templates/ActivityCalendar/projectNumbersRow.html

15 lines
825 B
HTML

<tr ng-if="row.Initialized" ng-show="row.Show" class="project-row">
<td ng-repeat="header in (ViewModel.Header.Weeks) track by $index"
ng-if="header.Initialized"
ng-show="header.Show"
ng-class="row.CSSClass[$index]"
ng-attr-style="{{ row.CSSStyle[$index] }}">
<div ng-tooltip tt-header="header" tt-on-content="row.getTooltipContent" tt-project-id="row.Id">
{{ (row.Cells[$index] | number:2) }}
</div>
</td>
</tr>
<tr ng-if="row.IsMaster && part.Initialized" ng-repeat="part in row.Children track by $index" grid-row templateUrl="{{part.Templates.Numbers}}" ng-init="row = part"></tr>
<!-- Expenditures -->
<tr ng-if="!row.IsMaster && exp.Initialized" ng-repeat="exp in row.Children track by $index" grid-row templateUrl="{{exp.Templates.Numbers}}"></tr>