diff --git a/InvenTree/company/templates/company/index.html b/InvenTree/company/templates/company/index.html
index 3f0dc7c489..d4a8659798 100644
--- a/InvenTree/company/templates/company/index.html
+++ b/InvenTree/company/templates/company/index.html
@@ -3,19 +3,19 @@
{% load static %}
{% block page_title %}
-InvenTree | Company List
+InvenTree | Supplier List
{% endblock %}
{% block content %}
-
Company List
+ Supplier List
@@ -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);
diff --git a/InvenTree/templates/InvenTree/search.html b/InvenTree/templates/InvenTree/search.html
index 187cc1addb..77730f5ea5 100644
--- a/InvenTree/templates/InvenTree/search.html
+++ b/InvenTree/templates/InvenTree/search.html
@@ -1,5 +1,7 @@
{% extends "base.html" %}
+{% load static %}
+
{% block page_title %}
InvenTree | Search Results
{% endblock %}
@@ -19,6 +21,11 @@ InvenTree | Search Results
{% endblock %}
+{% block js_load %}
+{{ block.super }}
+
+{% endblock %}
+
{% block js_ready %}
{{ block.super }}
diff --git a/InvenTree/templates/navbar.html b/InvenTree/templates/navbar.html
index 5cb71d13ac..e7785abcd5 100644
--- a/InvenTree/templates/navbar.html
+++ b/InvenTree/templates/navbar.html
@@ -9,7 +9,7 @@
Parts
Stock
Build
-
Companies
+
Suppliers
{% include "search_form.html" %}