2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

More template updates

- Add icons to more action buttons
This commit is contained in:
Oliver Walters
2020-10-28 22:37:58 +11:00
parent c8ec55a5fe
commit d8ada930c8
12 changed files with 238 additions and 175 deletions

View File

@ -13,7 +13,8 @@
{% if roles.purchase_order.add %}
<div id='button-bar'>
<div class='btn-group'>
<button class='btn btn-primary' type='button' id='order-part2' title='Order part'>Order Part</button>
<button class='btn btn-primary' type='button' id='order-part2' title='Order part'>
<span class='fas fa-shopping-cart'></span> {% trans "Order Part" %}</button>
</div>
</div>
{% endif %}

View File

@ -13,7 +13,9 @@
{% if roles.purchase_order.add %}
<div id='price-break-toolbar' class='btn-group'>
<button class='btn btn-primary' id='new-price-break' type='button'>{% trans "Add Price Break" %}</button>
<button class='btn btn-primary' id='new-price-break' type='button'>
<span class='fas fa-plus-circle'></span> {% trans "Add Price Break" %}
</button>
</div>
{% endif %}