mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 13:05:42 +00:00
visual consolidation
This commit is contained in:
@ -24,10 +24,16 @@ InvenTree | Index
|
||||
{% endblock %}
|
||||
|
||||
{% block js_ready %}
|
||||
|
||||
console.log("abcde?");
|
||||
|
||||
{{ block.super }}
|
||||
|
||||
$("#to-build-table").bootstrapTable();
|
||||
$("#to-order-table").bootstrapTable();
|
||||
$("#starred-parts-table").bootstrapTable();
|
||||
//TODO: These calls to bootstrapTable() are failing, for some reason?
|
||||
//$("#to-build-table").bootstrapTable();
|
||||
//$("#to-order-table").bootstrapTable();
|
||||
//$("#starred-parts-table").bootstrapTable();
|
||||
|
||||
console.log("Got to here...");
|
||||
|
||||
{% endblock %}
|
@ -1,11 +1,11 @@
|
||||
<table class='table table-striped table-condensed' id='{{ table_id }}'>
|
||||
<tr>
|
||||
<th>Part</th>
|
||||
<th>Description</th>
|
||||
<th>In Stock</th>
|
||||
<th>On Order</th>
|
||||
<th>Allocted</th>
|
||||
<th>Net Stock</th>
|
||||
<th data-field='part' data-sortable='true' data-searchable='true'>Part</th>
|
||||
<th data-field='part' data-sortable='true' data-searchable='true'>Description</th>
|
||||
<th data-field='part' data-sortable='true' data-searchable='true'>In Stock</th>
|
||||
<th data-field='part' data-sortable='true' data-searchable='true'>On Order</th>
|
||||
<th data-field='part' data-sortable='true' data-searchable='true'>Allocted</th>
|
||||
<th data-field='part' data-sortable='true' data-searchable='true'>Net Stock</th>
|
||||
</tr>
|
||||
{% for part in parts %}
|
||||
<tr>
|
||||
|
Reference in New Issue
Block a user