summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/products/edit.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/products/edit.html.tmpl')
-rw-r--r--template/en/default/admin/products/edit.html.tmpl16
1 files changed, 10 insertions, 6 deletions
diff --git a/template/en/default/admin/products/edit.html.tmpl b/template/en/default/admin/products/edit.html.tmpl
index 19a125062..2d346c665 100644
--- a/template/en/default/admin/products/edit.html.tmpl
+++ b/template/en/default/admin/products/edit.html.tmpl
@@ -22,8 +22,6 @@
#
# classification: Bugzilla::Classification object; The classification
# the product is in
- #
- # groups_controls: a hash of group controls related to the product.
#%]
[% title = BLOCK %]Edit Product '[% product.name FILTER html %]'[% END %]
@@ -33,6 +31,12 @@
style_urls = ['skins/standard/admin.css']
%]
+[% group_control = {${constants.CONTROLMAPNA} => 'NA',
+ ${constants.CONTROLMAPSHOWN} => 'Shown',
+ ${constants.CONTROLMAPDEFAULT} => 'Default',
+ ${constants.CONTROLMAPMANDATORY} => 'Mandatory'}
+ %]
+
<form method="post" action="editproducts.cgi">
<table border="0" cellpadding="4" cellspacing="0">
@@ -103,12 +107,12 @@ versions:</a>
</a>
</th>
<td>
- [% IF group_controls.size %]
- [% FOREACH g = group_controls.values %]
+ [% IF product.group_controls.size %]
+ [% FOREACH g = product.group_controls.values %]
<b>[% g.group.name FILTER html %]:</b>&nbsp;
[% IF g.group.isactive %]
- [% g.membercontrol FILTER html %]/
- [% g.othercontrol FILTER html %]
+ [% group_control.${g.membercontrol} FILTER html %]/
+ [% group_control.${g.othercontrol} FILTER html %]
[% IF g.entry %], ENTRY[% END %]
[% IF g.canedit %], CANEDIT[% END %]
[% IF g.editcomponents %], editcomponents[% END %]