fromatter for responsible group

This commit is contained in:
Matthias 2021-07-04 00:16:14 +02:00
parent 7b3bc33b88
commit 4711f0b823

View File

@ -895,6 +895,16 @@ function loadBuildTable(table, options) {
field: 'responsible',
title: '{% trans "Resposible" %}',
sortable: true,
formatter: function(value, row, index, field) {
if (value)
{
return row.responsible_detail.name;
}
else
{
return '{% trans "No information" %}';
}
}
},
{
field: 'target_date',