From 4caf73e0e3f3b91b1cb72d44769b9b72d7c5c0b7 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 9 Mar 2022 16:19:52 +1100 Subject: [PATCH] Change sidebar text to be consistent --- InvenTree/build/templates/build/sidebar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/build/templates/build/sidebar.html b/InvenTree/build/templates/build/sidebar.html index d0652cd3c1..4c22845980 100644 --- a/InvenTree/build/templates/build/sidebar.html +++ b/InvenTree/build/templates/build/sidebar.html @@ -9,10 +9,10 @@ {% include "sidebar_item.html" with label='allocate' text=text icon="fa-tasks" %} {% endif %} {% if not build.is_complete %} -{% trans "Pending Items" as text %} +{% trans "Incomplete Outputs" as text %} {% include "sidebar_item.html" with label='outputs' text=text icon="fa-tools" %} {% endif %} -{% trans "Completed Items" as text %} +{% trans "Completed Outputs" as text %} {% include "sidebar_item.html" with label='completed' text=text icon="fa-boxes" %} {% trans "Child Build Orders" as text %} {% include "sidebar_item.html" with label='children' text=text icon="fa-sitemap" %}