diff --git a/InvenTree/templates/InvenTree/notifications/notifications.html b/InvenTree/templates/InvenTree/notifications/notifications.html index e8aa6dbf19..e412eef922 100644 --- a/InvenTree/templates/InvenTree/notifications/notifications.html +++ b/InvenTree/templates/InvenTree/notifications/notifications.html @@ -58,6 +58,20 @@ function loadNotificationTable(table, options={}) { title: '{% trans "Category" %}', sortable: 'true', }, + { + field: 'target', + title: '{% trans "Item" %}', + sortable: 'true', + formatter: function(value, row, index, field) { + if (value == null) { + return ''; + } + + var html = `${value.model}: ${value.name}`; + if (value.link ) {html = `${html}`;} + return html; + } + }, { field: 'name', title: '{% trans "Name" %}',