diff options
-rw-r--r-- | template/en/default/reports/keywords.html.tmpl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/template/en/default/reports/keywords.html.tmpl b/template/en/default/reports/keywords.html.tmpl index bd52cf6ec..c4aee3cae 100644 --- a/template/en/default/reports/keywords.html.tmpl +++ b/template/en/default/reports/keywords.html.tmpl @@ -17,6 +17,7 @@ # Rights Reserved. # # Contributor(s): Gervase Markham <gerv@gerv.net> + # Contributor(s): David D. Kilzer <ddkilzer@kilzer.net> #%] [%# INTERFACE: @@ -43,7 +44,8 @@ <tr bgcolor="#6666FF"> <th align="left">Name</th> <th align="left">Description</th> - <th align="left">[% terms.Bugs %]</th> + <th align="left">Open [% terms.Bugs %]</th> + <th align="left">Total [% terms.Bugs %]</th> </tr> [% END %] @@ -53,6 +55,14 @@ [% keyword.name FILTER html %]</a> </th> <td>[% keyword.description %]</td> + <td align="center"> + [% IF keyword.bugcount > 0 %] + <a href="buglist.cgi?keywords=[% keyword.name FILTER url_quote %]&resolution=---"> + Search</a> + [% ELSE %] + none + [% END %] + </td> <td align="right"> [% IF keyword.bugcount > 0 %] <a href="buglist.cgi?keywords=[% keyword.name FILTER url_quote %]"> |