OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/frontend/app/components/work-packages/wp-display-attr/wp-display-attr.directive.html

20 lines
576 B

<span class="wp-table--cell-span"
ng-switch="vm.displayType"
wp-field="vm.workPackage"
field-name="vm.attribute">
<progress-bar ng-switch-when="Percent"
progress="vm.displayText"
width="80px">
</progress-bar>
<span ng-switch-when="SelfLink" title="{{ vm.displayText }}">
<a ng-href="{{ vm.displayLink }}">{{ vm.displayText }}</a>
</span>
<span ng-switch-default
title="{{ vm.displayText }}"
ng-class="{ 'work-package--placeholder' : vm.displayText == '-' }">
{{ vm.displayText }}
</span>
</span>