Add 'not estimated' label on taskboard

stable
Álex Hermida 2018-11-30 14:29:25 +01:00 committed by Alex Hermida
parent 9f983f50a5
commit e4419f7df2
1 changed files with 7 additions and 1 deletions

View File

@ -65,7 +65,13 @@ div.taskboard-table(
div.us-data div.us-data
p.points-value p.points-value
span(ng-bind="us.total_points") span(ng-bind="us.total_points")
span(translate="TASKBOARD.TABLE.FIELD_POINTS") span(ng-if="us.total_points"
translate="TASKBOARD.TABLE.FIELD_POINTS"
)
span.card-estimation.not-estimated(
ng-if="!us.total_points",
translate="US.NOT_ESTIMATED"
)
tg-due-date.due-date( tg-due-date.due-date(
due-date="us.due_date" due-date="us.due_date"
is-closed="us.is_closed" is-closed="us.is_closed"