diff --git a/InvenTree/InvenTree/static/script/inventree/part.js b/InvenTree/InvenTree/static/script/inventree/part.js index 18909fff0d..1056a7706b 100644 --- a/InvenTree/InvenTree/static/script/inventree/part.js +++ b/InvenTree/InvenTree/static/script/inventree/part.js @@ -137,6 +137,10 @@ function loadPartTable(table, url, options={}) { var display = imageHoverIcon(row.image) + renderLink(name, '/part/' + row.pk + '/'); + if (row.is_template) { + display = display + "TEMPLATE"; + } + if (!row.active) { display = display + "INACTIVE"; }