diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-04 19:49:50 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-04 19:49:50 +0100 |
commit | 6919f41e51cacaa8f6b4ae7bcdbd010c8d6aefe5 (patch) | |
tree | b03bd17dc6dd680197d1ef44d350543e82096490 /extensions/GuidedBugEntry/template | |
parent | 1143f1d0a5162c60e8bc893f0c9c6f2c5aa559d0 (diff) | |
download | bugzilla-6919f41e51cacaa8f6b4ae7bcdbd010c8d6aefe5.tar.gz bugzilla-6919f41e51cacaa8f6b4ae7bcdbd010c8d6aefe5.tar.xz |
Bug 834119: add the ability to force users into using a custom bug format
Diffstat (limited to 'extensions/GuidedBugEntry/template')
-rw-r--r-- | extensions/GuidedBugEntry/template/en/default/pages/guided_products.js.tmpl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/extensions/GuidedBugEntry/template/en/default/pages/guided_products.js.tmpl b/extensions/GuidedBugEntry/template/en/default/pages/guided_products.js.tmpl index 231681085..268fe06f8 100644 --- a/extensions/GuidedBugEntry/template/en/default/pages/guided_products.js.tmpl +++ b/extensions/GuidedBugEntry/template/en/default/pages/guided_products.js.tmpl @@ -8,9 +8,17 @@ [%# this file allows us to pull in data defined in the BMO ext %] +[% IF formats %] + [% FOREACH product = formats %] + if (!products['[% product.key FILTER js %]']) [% ~%] + products['[% product.key FILTER js %]'] = {}; + products['[% product.key FILTER js %]'].format = '[% product.value FILTER js %]'; + [% END %] +[% END %] + [% IF products %] [% FOREACH product = products %] - if (!products['[% product.key FILTER js %]']) + if (!products['[% product.key FILTER js %]']) [% ~%] products['[% product.key FILTER js %]'] = {}; products['[% product.key FILTER js %]'].secgroup = '[% product.value FILTER js %]'; [% END %] |