2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

Update a bunch more tables

This commit is contained in:
Oliver Walters
2019-09-22 22:18:53 +10:00
parent 2046c12600
commit ae2e2f36e4
20 changed files with 26 additions and 88 deletions

View File

@ -1,4 +1,4 @@
<table class='table table-striped table-condensed' id='po-table' {% if toolbar %}data-toolbar='{{ toolbar }}'{% endif %}>
<table class='table table-striped table-condensed po-table' id='po-table' {% if toolbar %}data-toolbar='{{ toolbar }}'{% endif %}>
<thead>
<tr>
<th data-field='company' data-sortable='true' data-searchable='true'>Company</th>

View File

@ -221,9 +221,7 @@ $('#new-po-line').click(function() {
});
{% endif %}
$("#po-lines-table").bootstrapTable({
search: true,
sortable: true,
$("#po-lines-table").inventreeTable({
});

View File

@ -32,8 +32,7 @@ $("#po-create").click(function() {
);
});
$("#po-table").bootstrapTable({
search: true,
$("#po-table").inventreeTable({
});
{% endblock %}