diff options
author | mkanat%bugzilla.org <> | 2006-07-02 01:45:53 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-07-02 01:45:53 +0200 |
commit | f301c9241af577f8f3df94338f1329d91c82d252 (patch) | |
tree | aff46880248e76011b2a3d6afa793be7117e9154 /template/en/default/reports | |
parent | 0fd94fa00dc3429814a97c106f2ff0a0550e6ac0 (diff) | |
download | bugzilla-f301c9241af577f8f3df94338f1329d91c82d252.tar.gz bugzilla-f301c9241af577f8f3df94338f1329d91c82d252.tar.xz |
Bug 343248: SQL query to get all keywords with bug count is duplicated in editkeywords.cgi and describekeywords.cgi
Patch By Remi Zara <remi_zara@mac.com> r=mkanat, a=justdave
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/keywords.html.tmpl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/template/en/default/reports/keywords.html.tmpl b/template/en/default/reports/keywords.html.tmpl index c4aee3cae..979c50163 100644 --- a/template/en/default/reports/keywords.html.tmpl +++ b/template/en/default/reports/keywords.html.tmpl @@ -21,10 +21,11 @@ #%] [%# INTERFACE: - # keywords: array of hashes. May be empty. Each has has three members: + # keywords: array keyword objects. May be empty. Each has has four members: + # id: id of the keyword # name: the name of the keyword # description: keyword description. May be HTML. - # bugcount: number of bugs with that keyword + # bug_count: number of bugs with that keyword # caneditkeywords: boolean. True if this user can edit keywords %] @@ -56,7 +57,7 @@ </th> <td>[% keyword.description %]</td> <td align="center"> - [% IF keyword.bugcount > 0 %] + [% IF keyword.bug_count > 0 %] <a href="buglist.cgi?keywords=[% keyword.name FILTER url_quote %]&resolution=---"> Search</a> [% ELSE %] @@ -64,9 +65,9 @@ [% END %] </td> <td align="right"> - [% IF keyword.bugcount > 0 %] + [% IF keyword.bug_count > 0 %] <a href="buglist.cgi?keywords=[% keyword.name FILTER url_quote %]"> - [% keyword.bugcount %]</a> + [% keyword.bug_count %]</a> [% ELSE %] none [% END %] |