diff options
author | Koosha Khajeh Moogahi <koosha.khajeh@gmail.com> | 2012-11-16 16:49:34 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-16 16:49:34 +0100 |
commit | 7605239f64f0b47fe3e96a9be0e07700b7bb5c7c (patch) | |
tree | 1b5648a1c45c7480c227cfb780dece89a3d55acf | |
parent | 2a565b2c1fb2fc0002b2e1b7a174da9e7bd150ac (diff) | |
download | bugzilla-7605239f64f0b47fe3e96a9be0e07700b7bb5c7c.tar.gz bugzilla-7605239f64f0b47fe3e96a9be0e07700b7bb5c7c.tar.xz |
Bug 802873: Linkify component names in the "Edit Product" page
r/a=LpSolit
-rw-r--r-- | template/en/default/admin/products/edit.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/admin/products/edit.html.tmpl b/template/en/default/admin/products/edit.html.tmpl index 0936dbf71..c38530125 100644 --- a/template/en/default/admin/products/edit.html.tmpl +++ b/template/en/default/admin/products/edit.html.tmpl @@ -43,7 +43,9 @@ <td> [% IF product.components.size -%] [% FOREACH component = product.components %] - <b>[% component.name FILTER html %]:</b> + <a href="editcomponents.cgi?action=edit&product= + [%- product.name FILTER uri %]&component= + [%- component.name FILTER uri %]">[% component.name FILTER html %]</a>: [% IF component.description %] [% component.description FILTER html_light %] [% ELSE %] |