diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-07-22 17:08:05 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-07-22 17:08:05 +0200 |
commit | 2686b79f087eda7d917aade30e12d18bf8d16c12 (patch) | |
tree | c949c7596b6747a9aa9dabee86104f1c7413947d /template/en/default/request | |
parent | 20e0cc4de8afa0b2f55e8201ca4fd307c809a6fe (diff) | |
download | bugzilla-2686b79f087eda7d917aade30e12d18bf8d16c12.tar.gz bugzilla-2686b79f087eda7d917aade30e12d18bf8d16c12.tar.xz |
Bug 670670 - New hook for requests.cgi that allows for additional links after attachment descriptions.
r/a=mkanat
Diffstat (limited to 'template/en/default/request')
-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 %] |