diff options
author | Hugo Seabrook <hugo.seabrook@gmail.com> | 2013-02-17 13:14:01 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-02-17 13:14:01 +0100 |
commit | 11a0cd743d60b18c1dde5f02c8fde3d590272bec (patch) | |
tree | b5a7e73e42d769f95d2a4a5870c32738741a150a /template/en/default/admin | |
parent | c46d2ee2827adadb9a204d8025fcbc92d7a24650 (diff) | |
download | bugzilla-11a0cd743d60b18c1dde5f02c8fde3d590272bec.tar.gz bugzilla-11a0cd743d60b18c1dde5f02c8fde3d590272bec.tar.xz |
Bug 601875: Display the "allow UNCONFIRMED" column when listing products in editproducts.cgi
r/a=LpSolit
Diffstat (limited to 'template/en/default/admin')
-rw-r--r-- | template/en/default/admin/products/list.html.tmpl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/template/en/default/admin/products/list.html.tmpl b/template/en/default/admin/products/list.html.tmpl index a5126afc3..0776b677c 100644 --- a/template/en/default/admin/products/list.html.tmpl +++ b/template/en/default/admin/products/list.html.tmpl @@ -29,21 +29,26 @@ %] [% columns = [ - { + { name => "name" heading => "Edit product..." contentlink => 'editproducts.cgi?action=edit&product=%%name%%' }, - { + { name => "description" heading => "Description" allow_html_content => 1 }, - { + { name => "is_active" heading => "Open For New $terms.Bugs" yesno_field => 1 }, + { + name => "allows_unconfirmed" + heading => "Allow UNCONFIRMED $terms.Bugs" + yesno_field => 1 + }, ] %] [% IF showbugcounts %] |