mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Column adjustments
This commit is contained in:
parent
b1bcb0d3d2
commit
0e95fb773f
@ -18,6 +18,7 @@
|
|||||||
<table class='table table-striped'>
|
<table class='table table-striped'>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
<th>Row</th>
|
<th>Row</th>
|
||||||
{% for col in bom_columns %}
|
{% for col in bom_columns %}
|
||||||
@ -33,7 +34,10 @@
|
|||||||
<td>
|
<td>
|
||||||
<button class='btn btn-default btn-remove' id='del_row_{{ forloop.counter }}' style='display: inline; float: right;' title='Remove row'>
|
<button class='btn btn-default btn-remove' id='del_row_{{ forloop.counter }}' style='display: inline; float: right;' title='Remove row'>
|
||||||
<span row_id='{{ forloop.counter }}' onClick='removeRowFromBomWizard()' class='glyphicon glyphicon-small glyphicon-remove'></span>
|
<span row_id='{{ forloop.counter }}' onClick='removeRowFromBomWizard()' class='glyphicon glyphicon-small glyphicon-remove'></span>
|
||||||
</button>
|
</button>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<input class='numberinput' type='number' min='1' value='{{ row.quantity }}'/>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ forloop.counter }}</td>
|
<td>{{ forloop.counter }}</td>
|
||||||
{% for item in row.data %}
|
{% for item in row.data %}
|
||||||
|
Loading…
Reference in New Issue
Block a user