diff options
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/request/queue.html.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index cd84e0f78..d99dadc9b 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -200,7 +200,10 @@ to some group are shown by default. <tr> [% FOREACH column = display_columns %] [% NEXT IF column == group_field || excluded_columns.contains(column) %] - <td>[% PROCESS "display_$column" %]</td> + <td> + [% PROCESS "display_$column" %] + [% Hook.process('after_column') %] + </td> [% END %] </tr> [% END %] |