diff --git a/InvenTree/stock/templates/stock/index.html b/InvenTree/stock/templates/stock/index.html
index 6c63af81d7..b3dc29227c 100644
--- a/InvenTree/stock/templates/stock/index.html
+++ b/InvenTree/stock/templates/stock/index.html
@@ -9,14 +9,14 @@
{% include "stock/location_list.html" with locations=locations %}
{% endif %}
-
+
Part |
Location |
- Stock |
+ Stock |
Status |
- Stocktake |
+ Stocktake |
|
@@ -32,7 +32,7 @@
{% endif %}
{{ item.quantity }} |
- {{ item.status }} |
+ {{ item.get_status_display }} |
{{ item.stocktake_date }} |
Click |
diff --git a/InvenTree/stock/templates/stock/stock_table.html b/InvenTree/stock/templates/stock/stock_table.html
index 044815fea1..d061814a29 100644
--- a/InvenTree/stock/templates/stock/stock_table.html
+++ b/InvenTree/stock/templates/stock/stock_table.html
@@ -1,8 +1,8 @@
-
+
Part |
- Stock |
+ Stock |
Status |
Stocktake |
|
@@ -13,7 +13,7 @@
{{ item.part.name }} |
{{ item.quantity }} |
- {{ item.status }} |
+ {{ item.get_status_display }} |
{{ item.stocktake_date }} |
Click |