Display template badge in part table

This commit is contained in:
Oliver Walters 2019-09-13 20:58:17 +10:00
parent 5672c37c9f
commit c8be9cb90c

View File

@ -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 + "<span class='label label-info' style='float: right;'>TEMPLATE</span>";
}
if (!row.active) {
display = display + "<span class='label label-warning' style='float: right;'>INACTIVE</span>";
}