diff --git a/templates/ticket/list.html.twig b/templates/ticket/list.html.twig
index cedd013f..90ee4337 100644
--- a/templates/ticket/list.html.twig
+++ b/templates/ticket/list.html.twig
@@ -112,6 +112,21 @@
field: 'status',
title: 'Status'
},
+ {
+ field: 'flag_late_doc',
+ title: 'Documentation Time',
+ template: function (row, index, datatable) {
+ var tag = '';
+
+ if (!row.flag_late_doc) {
+ tag = 'On Time';
+ } else {
+ tag = 'Late';
+ }
+
+ return tag;
+ }
+ },
{
field: 'Actions',
width: 110,