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.html

14 lines
587 B

<div class="work-package--attachments--files">
<div class="work-package--details--long-field">
<span
class="inplace-edit--read"
*ngFor="let attachment of workPackage.pendingAttachments">
<wp-attachment-list-item [attachment]="attachment" [workPackage]="workPackage"></wp-attachment-list-item>
</span>
<span
class="inplace-edit--read"
*ngFor="let attachment of workPackage.attachments.elements">
<wp-attachment-list-item [attachment]="attachment" [workPackage]="workPackage"></wp-attachment-list-item>
</span>
</div>
</div>