22 lines
988 B
Plaintext
22 lines
988 B
Plaintext
.card-data(
|
|
ng-if="vm.visible('extra_info')"
|
|
ng-class="{'empty-tasks': !vm.item.getIn(['model', 'tasks']).size}"
|
|
)
|
|
span.card-estimation(
|
|
ng-if="vm.item.getIn(['model', 'total_points']) === null",
|
|
translate="US.NOT_ESTIMATED"
|
|
)
|
|
span.card-estimation(
|
|
ng-if="vm.item.getIn(['model', 'total_points'])"
|
|
) {{"COMMON.FIELDS.POINTS" | translate}} {{vm.item.getIn(['model', 'total_points'])}}
|
|
.card-statistics
|
|
.statistic.card-votes(ng-class="{'active': vm.item.getIn(['model', 'is_voter'])}")
|
|
tg-svg(svg-icon="icon-upvote")
|
|
span {{vm.item.getIn(['model', 'total_voters'])}}
|
|
.statistic.card-watchers
|
|
tg-svg(svg-icon="icon-watch")
|
|
span {{vm.item.getIn(['model', 'watchers']).size}}
|
|
.statistic.card-attachments(ng-if="vm.item.getIn(['model', 'attachments']).size")
|
|
tg-svg(svg-icon="icon-attachment")
|
|
span {{vm.item.getIn(['model', 'attachments']).size}}
|