|
|
|
@ -11,7 +11,7 @@ |
|
|
|
|
icon-name="yes"></icon-wrapper> |
|
|
|
|
</a> |
|
|
|
|
</th> |
|
|
|
|
<th class="icon-table"><i class="icon-info"></i></th> |
|
|
|
|
<th class="icon-table" ng-hide="hideWorkPackageDetails"><i class="icon-info"></i></th> |
|
|
|
|
<th sort-header |
|
|
|
|
header-name="'id'" |
|
|
|
|
header-title="'#'" |
|
|
|
@ -52,7 +52,7 @@ |
|
|
|
|
keyboard_hover: true |
|
|
|
|
}" |
|
|
|
|
id="group-header-{{ row.groupName }}"> |
|
|
|
|
<td colspan="{{ columns.length + 3 }}"> |
|
|
|
|
<td colspan="{{ columns.length + 3 - (!!hideWorkPackageDetails * 1) }}"> |
|
|
|
|
<span ng-class="[ |
|
|
|
|
'expander', |
|
|
|
|
'icon-context', |
|
|
|
@ -112,7 +112,7 @@ |
|
|
|
|
model="row.checked"/> |
|
|
|
|
</td> |
|
|
|
|
|
|
|
|
|
<td class="icon-table info"> |
|
|
|
|
<td class="icon-table info" ng-hide="hideWorkPackageDetails"> |
|
|
|
|
<p><a href ui-sref="work-packages.list.details({workPackageId: row.object.id})"><i class="icon-info"></i></a></p> |
|
|
|
|
</td> |
|
|
|
|
|
|
|
|
@ -145,7 +145,7 @@ |
|
|
|
|
'issue', |
|
|
|
|
'work_package' |
|
|
|
|
]"> |
|
|
|
|
<td colspan="3"> |
|
|
|
|
<td colspan="{{3 - (!!hideWorkPackageDetails * 1)}}"> |
|
|
|
|
{{ I18n.t('js.label_sum_for') }} |
|
|
|
|
<span work-package-column work-package="row.object" column="groupByColumn"/> |
|
|
|
|
</td> |
|
|
|
@ -159,7 +159,7 @@ |
|
|
|
|
<tr work-package-total-sums |
|
|
|
|
ng-if="displaySums" |
|
|
|
|
class="sum group all issue work_package"> |
|
|
|
|
<td colspan="3">{{ I18n.t('js.label_sum_for') }} {{ I18n.t('js.label_all_work_packages') }}</td> |
|
|
|
|
<td colspan="{{3 - (!!hideWorkPackageDetails * 1)}}">{{ I18n.t('js.label_sum_for') }} {{ I18n.t('js.label_all_work_packages') }}</td> |
|
|
|
|
<td ng-repeat="column in columns"> |
|
|
|
|
{{ column.total_sum }} |
|
|
|
|
</td> |
|
|
|
|