mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-14 15:41:10 +00:00
POST the data back again
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
<option value='{{ req }}'{% if req == col.guess %}selected='selected'{% endif %}>{{ req }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input type='hidden' name='col_{{ forloop.counter0 }}' value='{{ col.name }}'/>
|
||||
{{ col.name }}
|
||||
</th>
|
||||
{% endfor %}
|
||||
@@ -34,8 +35,9 @@
|
||||
{% for row in bom_rows %}
|
||||
<tr>
|
||||
<td>{% add forloop.counter 1 %}</td>
|
||||
{% for item in row %}
|
||||
{% for item in row.data %}
|
||||
<td>
|
||||
<input type='hidden' name='row_{{ row.index }}_col_{{ forloop.counter0 }}' value='{{ item }}'/>
|
||||
{{ item }}
|
||||
</td>
|
||||
{% endfor %}
|
||||
|
Reference in New Issue
Block a user