diff --git a/InvenTree/build/templates/build/build_base.html b/InvenTree/build/templates/build/build_base.html
index 826baf13ea..22a126fcdf 100644
--- a/InvenTree/build/templates/build/build_base.html
+++ b/InvenTree/build/templates/build/build_base.html
@@ -34,6 +34,7 @@ src="{% static 'img/blank_image.png' %}"
{% include "admin_button.html" with url=url %}
{% endif %}
+{% if report_enabled %}
@@ -224,9 +226,11 @@ src="{% static 'img/blank_image.png' %}"
{% endif %}
});
+ {% if report_enabled %}
$('#print-build-report').click(function() {
printBuildReports([{{ build.pk }}]);
});
+ {% endif %}
$("#build-delete").on('click', function() {
launchModalForm(
diff --git a/InvenTree/build/templates/build/index.html b/InvenTree/build/templates/build/index.html
index ba8997ca05..b2c237c149 100644
--- a/InvenTree/build/templates/build/index.html
+++ b/InvenTree/build/templates/build/index.html
@@ -27,6 +27,7 @@