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/wp-table/directives/wp-column/wp-column.directive.html

11 lines
472 B

<span ng-switch="vm.displayType">
<progress-bar ng-switch-when="progress_bar"
progress="vm.displayText"
width="80px">
</progress-bar>
<a ng-switch-when="link" href="{{ vm.url }}" title="{{ vm.displayText }}">{{ vm.displayText }}</a>
<a ng-switch-when="ref" ui-sref="{{ vm.stateRef }}" title="{{ vm.displayText }}">{{ vm.displayText }}</a>
<span ng-switch-default title="{{ vm.displayText }}">{{ vm.displayText }}</span>
</span>