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-attachments/wp-attachment-list/wp-attachment-list.directiv...

16 lines
635 B

<div class="work-package--attachments--files">
<div class="work-package--details--long-field">
<span
class="inplace-edit--read"
ng-include="::$ctrl.itemTemplateUrl"
ng-if="$ctrl.workPackage.pendingAttachments"
ng-repeat="attachment in $ctrl.workPackage.pendingAttachments track by attachment.name+$index">
</span>
<span
class="inplace-edit--read"
ng-include="::$ctrl.itemTemplateUrl"
ng-if="$ctrl.workPackage.attachments.elements"
ng-repeat="attachment in $ctrl.workPackage.attachments.elements track by attachment.name+$index">
</span>
</div>
</div>