mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 13:28:49 +00:00
Some more changes
This commit is contained in:
parent
776ca7db12
commit
05a5ab222d
@ -8,20 +8,15 @@ InvenTree | Supplier List
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class='row'>
|
<h3>Supplier List</h3>
|
||||||
<div class='col-sm-6'>
|
<hr>
|
||||||
<h3>Supplier List</h3>
|
|
||||||
</div>
|
<div id='button-toolbar'>
|
||||||
<div class='col-sm-6'>
|
<div class='btn-group'>
|
||||||
<div class='container' id='active-build-toolbar' style='float: right;'>
|
|
||||||
<div class='btn-group' style='float: right;'>
|
|
||||||
<button type='button' class="btn btn-success" id='new-company' title='Add new supplier'>New Supplier</button>
|
<button type='button' class="btn btn-success" id='new-company' title='Add new supplier'>New Supplier</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<table class='table table-striped' id='company-table' data-toolbar='#button-toolbar'>
|
<table class='table table-striped' id='company-table' data-toolbar='#button-toolbar'>
|
||||||
</table>
|
</table>
|
||||||
|
@ -8,18 +8,16 @@ InvenTree | Purchase Orders
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class='row'>
|
<h3>Purchase Orders</h3>
|
||||||
<div class='col-sm-6'>
|
<hr>
|
||||||
<h3>Purchase Orders</h3>
|
|
||||||
</div>
|
<div id='table-buttons'>
|
||||||
<div class='col-sm-6'>
|
|
||||||
<div class='btn-group' style='float: right;'>
|
<div class='btn-group' style='float: right;'>
|
||||||
<button class='btn btn-primary' type='button' id='po-create' title='Create new purchase order'>New Purchase Order</button>
|
<button class='btn btn-primary' type='button' id='po-create' title='Create new purchase order'>New Purchase Order</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% include "order/po_table.html" %}
|
{% include "order/po_table.html" with toolbar='#table-buttons' %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
@ -34,4 +32,8 @@ $("#po-create").click(function() {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("#po-table").bootstrapTable({
|
||||||
|
search: true,
|
||||||
|
});
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
x
Reference in New Issue
Block a user