diff --git a/InvenTree/build/templates/build/allocate.html b/InvenTree/build/templates/build/allocate.html
index aa45aa5054..6efde49308 100644
--- a/InvenTree/build/templates/build/allocate.html
+++ b/InvenTree/build/templates/build/allocate.html
@@ -7,14 +7,15 @@
InvenTree | Allocate Parts
{% endblock %}
+{% block menubar %}
+{% include "build/navbar.html" with tab='allocate' %}
+{% endblock %}
+
+{% block heading %}
+{% trans "Incomplete Build Ouputs" %}
+{% endblock %}
+
{% block details %}
-
-{% include "build/tabs.html" with tab='allocate' %}
-
-
{% trans "Build order has been completed" %}
diff --git a/InvenTree/build/templates/build/attachments.html b/InvenTree/build/templates/build/attachments.html
index a2dde0868c..8546ab42f5 100644
--- a/InvenTree/build/templates/build/attachments.html
+++ b/InvenTree/build/templates/build/attachments.html
@@ -4,13 +4,15 @@
{% load i18n %}
{% load markdownify %}
+{% block menubar %}
+{% include "build/navbar.html" with tab='attachments' %}
+{% endblock %}
+
+{% block heading %}
+{% trans "Attachments" %}
+{% endblock %}
+
{% block details %}
-
-{% include "build/tabs.html" with tab='attachments' %}
-
-
{% trans "Attachments" %}
-
-
{% include "attachment_table.html" with attachments=build.attachments.all %}
{% endblock %}
diff --git a/InvenTree/build/templates/build/build_base.html b/InvenTree/build/templates/build/build_base.html
index fab9eb8353..af11bbba97 100644
--- a/InvenTree/build/templates/build/build_base.html
+++ b/InvenTree/build/templates/build/build_base.html
@@ -148,6 +148,10 @@ src="{% static 'img/blank_image.png' %}"
{% block js_ready %}
+enableRightNavbar({
+ minWidth: '50px'
+});
+
$("#build-edit").click(function () {
launchModalForm("{% url 'build-edit' build.id %}",
{
diff --git a/InvenTree/build/templates/build/build_children.html b/InvenTree/build/templates/build/build_children.html
index c996aaa84f..034bc6d98f 100644
--- a/InvenTree/build/templates/build/build_children.html
+++ b/InvenTree/build/templates/build/build_children.html
@@ -2,14 +2,16 @@
{% load static %}
{% load i18n %}
+{% block menubar %}
+{% include "build/navbar.html" with tab="children" %}
+{% endblock %}
+
+{% block heading %}
+{% trans "Child Build Orders" %}
+{% endblock %}
+
+
{% block details %}
-
-{% include "build/tabs.html" with tab="children" %}
-
-
{% trans "Child Build Orders" %}
-
-
-