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/app/assets/templates/work_packages/summarized_cost_entries.html

13 lines
497 B

<span class="costs costTypes" ng-if="costTypes">
<span ng-repeat="costType in costTypes">
<a ng-href="{{ linkToSummary(costType) }}" title="{{ costType.props.name }}">
{{ costType.props.units }}
<span class="unit" ng-switch="costType.props.units">
<span ng-switch-when="1">{{ costType.props.unit }}</span>
<span ng-switch-default>{{ costType.props.unitPlural }}</span>
</span>
</a>
<span class="separator" ng-if="!$last">,</span>
</span>
</span>