diff --git a/images/info.png b/images/info.png new file mode 100644 index 000000000..268d9d75b Binary files /dev/null and b/images/info.png differ diff --git a/template/en/default/admin/custom_fields/edit.html.tmpl b/template/en/default/admin/custom_fields/edit.html.tmpl index 2e2b283b0..2e96de67d 100644 --- a/template/en/default/admin/custom_fields/edit.html.tmpl +++ b/template/en/default/admin/custom_fields/edit.html.tmpl @@ -61,32 +61,30 @@ var constants = { [% END %] -[% IF field.id && !field.custom %] - [% SWITCH field.name %] - [% CASE 'classification' %] -

- If this field is enabled, [% terms.Bugzilla %] will associate each product with a - specific classification.
But you must have 'editclassification' - permissions enabled in order to edit classifications. -

- [% CASE 'votes' %] -

- If this field is enabled, users will be allowed to vote for [% terms.bugs %]. - Note that in order for this to be effective, you will have to change the maximum - votes allowed in a product to be non-zero in the product edit page. -

- [% CASE 'alias' %] -

- Enabling this field allows you to assign [% terms.bugs %] "aliases", which are - easy-to-remember names by which you can refer to [% terms.bugs %]. -

- [% CASE 'see_also' %] -

- Enabling See Also field allows you to refer to [% terms.bugs %] in other installations. - Even if you disable this field, [% terms.bug %] relationships (URLs) which are already set - will still appear and can be removed. -

- [% END %] +[% SET has_help = { 'classification' => 1, 'votes' => 1, 'alias' => 1, 'see_also' => 1 } %] +[% IF field.id && !field.custom && has_help.${field.name} %] + + + +
+ [% SWITCH field.name %] + [% CASE 'classification' %] + If this field is enabled, [% terms.Bugzilla %] will associate each product with a + specific classification.
But you must have 'editclassification' + permissions enabled in order to edit classifications. + [% CASE 'votes' %] + If this field is enabled, users will be allowed to vote for [% terms.bugs %].
+ Note that in order for this to be effective, you will have to change the maximum + votes allowed in a product to be non-zero in the product edit page. + [% CASE 'alias' %] + Enabling this field allows you to assign [% terms.bugs %] "aliases", which are + easy-to-remember names by which you can refer to [% terms.bugs %]. + [% CASE 'see_also' %] + Enabling See Also field allows you to refer to [% terms.bugs %] in other installations.
+ Even if you disable this field, [% terms.bug %] relationships (URLs) which are already set + will still appear and can be removed. + [% END %] +
[% END %]