mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
9b4db43232
- Part attachments - StockItem attachments - PurchaseOrder attachments - SalesOrder attachments - BuildOrder attachments
15 lines
442 B
HTML
15 lines
442 B
HTML
{% load i18n %}
|
|
|
|
<div id='attachment-buttons'>
|
|
<div class='btn-group'>
|
|
<button type='button' class='btn btn-success' id='new-attachment'>
|
|
<span class='fas fa-plus-circle'></span> {% trans "Add Attachment" %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class='dropzone' id='attachment-dropzone'>
|
|
<table class='table table-striped table-condensed' data-toolbar='#attachment-buttons' id='attachment-table'>
|
|
|
|
</table>
|
|
</div> |