mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-17 12:35:46 +00:00
Add ability to move a stock item
This commit is contained in:
@ -10,7 +10,25 @@
|
||||
<hr>
|
||||
|
||||
<table class='table table-striped' id='part-table'>
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Part</th>
|
||||
<th>Source</th>
|
||||
<th>Quantity</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for item in build.part.bom_items.all %}
|
||||
<tr>
|
||||
<td colspan='3'><b><i>{{ item.sub_part.name }}</b></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><i>Select...</i></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user