Column adjustments

This commit is contained in:
Oliver Walters 2019-07-07 08:48:42 +10:00
parent b1bcb0d3d2
commit 0e95fb773f

View File

@ -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 %}