diff options
author | lpsolit%gmail.com <> | 2005-09-28 07:08:11 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-28 07:08:11 +0200 |
commit | 40dcf522e094f7d9944524dbc1ebafc61b6642c8 (patch) | |
tree | 24c5011caf64a9abef459664c5a453c5681f5205 /template/en/default/admin/milestones | |
parent | 8a51d31aa29bc7e0b09adeb464354832afc9c853 (diff) | |
download | bugzilla-40dcf522e094f7d9944524dbc1ebafc61b6642c8.tar.gz bugzilla-40dcf522e094f7d9944524dbc1ebafc61b6642c8.tar.xz |
Bug 307604: "Redisplay table with bug counts" should also be available from editmilestones.cgi and editversions.cgi - Patch by Frédéric Buclin <LpSolit@gmail.com> r=GavinS a=justdave
Diffstat (limited to 'template/en/default/admin/milestones')
-rw-r--r-- | template/en/default/admin/milestones/list.html.tmpl | 38 | ||||
-rw-r--r-- | template/en/default/admin/milestones/select-product.html.tmpl | 31 |
2 files changed, 51 insertions, 18 deletions
diff --git a/template/en/default/admin/milestones/list.html.tmpl b/template/en/default/admin/milestones/list.html.tmpl index d36b61a3d..b9311fc1a 100644 --- a/template/en/default/admin/milestones/list.html.tmpl +++ b/template/en/default/admin/milestones/list.html.tmpl @@ -17,13 +17,12 @@ # Rights Reserved. # # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org> + # Frédéric Buclin <LpSolit@gmail.com> #%] [%# INTERFACE: - # milestones: array of hashes having the following properties: - # - name: string; The name of the milestone. - # - sortkey: number; The sortkey used to order the milestone. - # + # milestones: array of milestone objects + # showbugcounts: if defined, then bug counts should be included in the table # product: string; the name of the product we are editing milestones for #%] @@ -42,6 +41,8 @@ [%- product FILTER url_quote %]&milestone=%%name%%[% END %] [% delete_contentlink = BLOCK %]editmilestones.cgi?action=del&product= [%- product FILTER url_quote %]&milestone=%%name%%[% END %] +[% bug_count_contentlink = BLOCK %]buglist.cgi?target_milestone=%%name%%&product= + [%- product FILTER url_quote %][% END %] [% columns = [ @@ -53,14 +54,28 @@ { name => "sortkey" heading => "Sortkey" - }, - { + } + ] +%] + +[% IF showbugcounts %] + + [% columns.push({ + name => "bug_count" + heading => "$terms.Bugs" + align => "right" + contentlink => bug_count_contentlink + }) + %] + +[% END %] + +[% columns.push({ name => "action" heading => "Action" content => "Delete" contentlink => delete_contentlink - } - ] + }) %] [%# We want to override the usual 'Delete' link for the default @@ -83,6 +98,13 @@ <p> +[% IF ! showbugcounts %] + + <p><a href="editmilestones.cgi?product=[% product FILTER url_quote %]&showbugcounts=1"> + Redisplay table with [% terms.bug %] counts (slower)</a></p> + +[% END %] + [% PROCESS admin/milestones/footer.html.tmpl no_edit_other_milestones_link = 1 %] diff --git a/template/en/default/admin/milestones/select-product.html.tmpl b/template/en/default/admin/milestones/select-product.html.tmpl index b2510ded9..508af6881 100644 --- a/template/en/default/admin/milestones/select-product.html.tmpl +++ b/template/en/default/admin/milestones/select-product.html.tmpl @@ -16,28 +16,22 @@ # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # - # Contributor(s): Gavin Shelley (bugzilla@chimpychompy.org) + # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org> + # Frédéric Buclin <LpSolit@gmail.com> # #%] [%# INTERFACE: - # products: array of hashes having the following properties: - # - name: string; The name of the product. - # - description: string; The description of the product. + # products: array of product objects + # showbugcounts: if defined, then bug counts should be included in the table #%] -[% USE Bugzilla %] -[% cgi = Bugzilla.cgi %] - [% PROCESS global/variables.none.tmpl %] [% PROCESS global/header.html.tmpl title = "Edit milestones for which product?" %] -[% bug_count_contentlink = BLOCK %]buglist.cgi?target_milestone=%%name%%&product= - [%- product FILTER url_quote %][% END %] - [% columns = [ { name => "name" @@ -52,11 +46,28 @@ ] %] +[% IF showbugcounts %] + + [% columns.push({ + name => 'bug_count' + heading => "$terms.Bugs" + align => "right" + contentlink => "buglist.cgi?product=%%name%%" + }) + %] + +[% END %] + [% PROCESS admin/table.html.tmpl columns = columns data = products %] +[% IF !showbugcounts %] + <p><a href="editmilestones.cgi?showbugcounts=1"> + Redisplay table with [% terms.bug %] counts (slower)</a></p> +[% END %] + <p> [% PROCESS global/footer.html.tmpl %] |