[% cgi = Bugzilla.cgi %] [% PROCESS global/header.html.tmpl title='Verify Field Values' %]
[% PROCESS "global/hidden-fields.html.tmpl" exclude=exclude_params_re %] [% IF incorrect_fields.size > 0 %]

Verify [% incorrect_field_descs.join(', ') %]

[% FOR f = incorrect_fields %]

Value[% 's' IF f.values.size > 1 %] "[% f.value_names.join('", "') | html %]" of the field "[% f.field.description | html %]" [% f.values.size > 1 ? 'are' : 'is' %] incorrect for the value "[% f.controller.name | html %]" of controlling field "[% f.field.value_field.description | html %]".

[% END %]

Please set the correct values for these fields now:

[% FOR f = incorrect_fields %] [% END %]
[% f.field.description | html %]:
[% PROCESS "global/select-menu.html.tmpl" name = f.field.name options = f.options default = f.options.0 size = 10 multiple = f.field.type == constants.FIELD_TYPE_MULTI_SELECT %]
[% END %] [% IF verify_bug_groups %]

Verify [% terms.Bug %] Group

[% IF old_groups.size %]

These groups are not legal for the '[% product.name FILTER html %]' product or you are not allowed to restrict [% terms.bugs %] to these groups. [%+ terms.Bugs %] will no longer be restricted to these groups and may become public if no other group applies:
[% FOREACH group = old_groups %]
[% END %]

[% END %] [% mandatory_groups = [] %] [% optional_groups = [] %] [% FOREACH gid = product.group_controls.keys %] [% group = product.group_controls.$gid %] [% NEXT UNLESS group.group.is_active %] [% IF group.membercontrol == constants.CONTROLMAPMANDATORY || (group.othercontrol == constants.CONTROLMAPMANDATORY && !user.in_group(group.group.name)) %] [% mandatory_groups.push(group) %] [% ELSIF (group.membercontrol != constants.CONTROLMAPNA && user.in_group(group.group.name)) || group.othercontrol != constants.CONTROLMAPNA %] [% optional_groups.push(group) %] [% END %] [% END %] [% IF optional_groups.size %]

These groups are optional. You can decide to restrict [% terms.bugs %] to one or more of the following groups:
[% FOREACH group = optional_groups %]
[% END %]

[% END %] [% IF mandatory_groups.size %]

These groups are mandatory and [% terms.bugs %] will be automatically restricted to these groups:
[% FOREACH group = mandatory_groups %]
[% END %]

[% END %] [% END %]

[%# If 'id' is defined, then we are editing a single bug. # Else we are editing several bugs at once. %] [% IF cgi.param('id') AND cgi.param('id').match('^\d+$') %] [% id = cgi.param('id') %] Cancel and Return to [% "$terms.bug $id" FILTER bug_link(id) FILTER none %] [% ELSE %] Cancel and Return to the last search results [% END %] [% PROCESS global/footer.html.tmpl %]