12 lines
443 B
HTML
12 lines
443 B
HTML
<tr ng-if="exp.Initialized" ng-show="exp.Show">
|
|
<td ng-repeat="header in (ViewModel.Header.Weeks) track by $index"
|
|
ng-if="header.Initialized"
|
|
ng-show="header.Show">
|
|
<div class="exp-cat-total" ng-tooltip tt-header="header" tt-on-content="exp.getTooltipContent"
|
|
tt-project-id="row.Id"
|
|
tt-expcat-id="exp.Id">
|
|
{{ (exp.Cells[$index] | number:2) }}
|
|
</div>
|
|
</td>
|
|
</tr>
|