19 lines
931 B
HTML
19 lines
931 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"
|
|
ng-class="exp.CSSClass[$index]">
|
|
<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>
|
|
<!-- Teams Unassigned -->
|
|
<tr ng-if="ecTeamRow.Initialized" ng-repeat="ecTeamRow in exp.Children" class="row-with-buttons" grid-row templateUrl="{{ecTeamRow.Templates.Numbers}}"></tr>
|
|
<!-- Assign team row -->
|
|
<tr ng-if="exp.Initialized && !row.ReadOnly" ng-show="exp.Show && !exp.Collapsed && exp.AvailableTeams && exp.AvailableTeams.length" class="resRow assign-row">
|
|
<td style="height:54px;" colspan="{{ViewModel.Header.Colspan}}"></td>
|
|
</tr>
|