2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Rename 'Company' to 'Suppliers' in front-end

This commit is contained in:
Oliver Walters
2019-05-15 07:44:13 +10:00
parent c6331255de
commit a1d587b7f4
3 changed files with 12 additions and 5 deletions

View File

@ -3,19 +3,19 @@
{% load static %}
{% block page_title %}
InvenTree | Company List
InvenTree | Supplier List
{% endblock %}
{% block content %}
<div class='row'>
<div class='col-sm-6'>
<h3>Company List</h3>
<h3>Supplier List</h3>
</div>
<div class='col-sm-6'>
<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'>New Company</button>
<button type='button' class="btn btn-success" id='new-company' title='Add new supplier'>New Supplier</button>
</div>
</div>
</div>
@ -54,7 +54,7 @@ InvenTree | Company List
},
{
field: 'name',
title: 'Company',
title: 'Supplier',
sortable: true,
formatter: function(value, row, index, field) {
return imageHoverIcon(row.image) + renderLink(value, row.url);