diff --git a/InvenTree/build/templates/build/allocate.html b/InvenTree/build/templates/build/allocate.html
index 1ed791a8ab..63e15df135 100644
--- a/InvenTree/build/templates/build/allocate.html
+++ b/InvenTree/build/templates/build/allocate.html
@@ -9,26 +9,27 @@
-
-
-
- Part |
- Source |
- Quantity |
-
-
-
-{% for item in build.part.bom_items.all %}
-
- {{ item.sub_part.name }} |
-
-
- |
- Select... |
- |
-
-{% endfor %}
-
+
+{% endblock %}
+
+{% block js_ready %}
+{{ block.super }}
+
+ $('#build-table').bootstrapTable({
+ sortable: true,
+ columns: [
+ {
+ title: 'Part',
+ },
+ {
+ title: 'Source',
+ },
+ {
+ title: 'Quantity',
+ }
+ ]
+ });
+
{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/build/templates/build/detail.html b/InvenTree/build/templates/build/detail.html
index d9fd5b3c0f..287c5c1bd5 100644
--- a/InvenTree/build/templates/build/detail.html
+++ b/InvenTree/build/templates/build/detail.html
@@ -2,7 +2,32 @@
{% load static %}
{% block content %}
-Build Details
+
+
+
+
Build Details
+
{{ build.title }}{% include "build_status.html" with build=build %}
+
Building {{ build.quantity }} × {{ build.part.name }}
+
+
+
+
Title | {{ build.title }} |
@@ -68,28 +93,20 @@
-
-
-{% if build.is_active %}
-
-
-{% endif %}
-
-
{% include 'modals.html' %}
{% endblock %}
{% block js_ready %}
{{ block.super }}
- $("#edit-build").click(function () {
+ $("#build-edit").click(function () {
launchModalForm("{% url 'build-edit' build.id %}",
{
reload: true
});
});
- $("#cancel-build").click(function() {
+ $("#build-cancel").click(function() {
launchModalForm("{% url 'build-cancel' build.id %}",
{
reload: true