diff --git a/InvenTree/company/templates/company/index.html b/InvenTree/company/templates/company/index.html
index 6b2dad3c81..3f0dc7c489 100644
--- a/InvenTree/company/templates/company/index.html
+++ b/InvenTree/company/templates/company/index.html
@@ -2,6 +2,10 @@
{% load static %}
+{% block page_title %}
+InvenTree | Company List
+{% endblock %}
+
{% block content %}
diff --git a/InvenTree/company/templates/company/partdetail.html b/InvenTree/company/templates/company/partdetail.html
index a67e0fbf2d..736b73256d 100644
--- a/InvenTree/company/templates/company/partdetail.html
+++ b/InvenTree/company/templates/company/partdetail.html
@@ -1,5 +1,10 @@
{% extends "base.html" %}
{% load static %}
+
+{% block page_title %}
+InvenTree | {{ company.name }} - Parts
+{% endblock %}
+
{% block content %}
diff --git a/InvenTree/part/templates/part/part_app_base.html b/InvenTree/part/templates/part/part_app_base.html
index 7fed480d59..43b12377f6 100644
--- a/InvenTree/part/templates/part/part_app_base.html
+++ b/InvenTree/part/templates/part/part_app_base.html
@@ -4,11 +4,11 @@
{% block page_title %}
{% if part %}
-InvenTree Part - {{ part.name }}
+InvenTree | Part - {{ part.name }}
{% elif category %}
-InvenTree Part Category - {{ category }}
+InvenTree | Part Category - {{ category }}
{% else %}
-InvenTree Part List
+InvenTree | Part List
{% endif %}
{% endblock %}
diff --git a/InvenTree/stock/templates/stock/stock_app_base.html b/InvenTree/stock/templates/stock/stock_app_base.html
index e651efb813..26393626bb 100644
--- a/InvenTree/stock/templates/stock/stock_app_base.html
+++ b/InvenTree/stock/templates/stock/stock_app_base.html
@@ -3,11 +3,11 @@
{% block page_title %}
{% if item %}
-InvenTree Stock Item - {{ item }}
+InvenTree | Stock Item - {{ item }}
{% elif location %}
-InvenTree Stock Location - {{ location }}
+InvenTree | Stock Location - {{ location }}
{% else %}
-InvenTree Stock
+InvenTree | Stock
{% endif %}
{% endblock %}