diff options
author | mkanat%bugzilla.org <> | 2008-01-12 23:23:10 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-01-12 23:23:10 +0100 |
commit | a404e6c3e3d777f09ef2ab8100ad01a20a3c885c (patch) | |
tree | b53829efb2e5715693bf6e5119b4368c32c8de32 /template/en/default | |
parent | 3566e55c432388dd8936fa2d7f3e5e14518d3cfd (diff) | |
download | bugzilla-a404e6c3e3d777f09ef2ab8100ad01a20a3c885c.tar.gz bugzilla-a404e6c3e3d777f09ef2ab8100ad01a20a3c885c.tar.xz |
Bug 401965: Move groups updating from process_bug.cgi to Bugzilla::Bug
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 5 | ||||
-rw-r--r-- | template/en/default/bug/process/verify-new-product.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 19 |
3 files changed, 26 insertions, 0 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 1f20cdb52..c37f93838 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -498,6 +498,9 @@ [% END %] + [% IF group.ingroup %] + <input type="hidden" name="defined_bit-[% group.bit %]" value="1"> + [% END %] <input type="checkbox" value="1" name="bit-[% group.bit %]" id="bit-[% group.bit %]" [% " checked=\"checked\"" IF group.ison %] @@ -530,11 +533,13 @@ </p> <p> + <input type="hidden" name="defined_reporter_accessible" value="1"> <input type="checkbox" value="1" name="reporter_accessible" id="reporter_accessible" [% " checked" IF bug.reporter_accessible %] [% " disabled=\"disabled\"" UNLESS bug.check_can_change_field("reporter_accessible", 0, 1) %]> <label for="reporter_accessible">Reporter</label> + <input type="hidden" name="defined_cclist_accessible" value="1"> <input type="checkbox" value="1" name="cclist_accessible" id="cclist_accessible" [% " checked" IF bug.cclist_accessible %] diff --git a/template/en/default/bug/process/verify-new-product.html.tmpl b/template/en/default/bug/process/verify-new-product.html.tmpl index ee87ef818..d1ce9652b 100644 --- a/template/en/default/bug/process/verify-new-product.html.tmpl +++ b/template/en/default/bug/process/verify-new-product.html.tmpl @@ -145,6 +145,8 @@ <p>These groups are optional. You can decide to restrict [% terms.bugs %] to one or more of the following groups:<br> [% FOREACH group = optional_groups %] + <input type="hidden" name="defined_bit-[% group.group.id FILTER html %]" + value="1"> <input type="checkbox" id="bit-[% group.group.id FILTER html %]" name="bit-[% group.group.id FILTER html %]" [% ((group.membercontrol == constants.CONTROLMAPDEFAULT && user.in_group(group.group.name)) diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 2848ab5a4..46ed901a2 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -600,6 +600,12 @@ in the database which refer to it. All references to this group must be removed before you can remove it. + [% ELSIF error == "group_change_denied" %] + [% title = "Cannot Add/Remove That Group" %] + You tried to add or remove group id [% group_id FILTER html %] + from [% terms.bug %] [%+ bug.id FILTER html %], but you do not + have permissions to do so. + [% ELSIF error == "group_exists" %] [% title = "The group already exists" %] The group [% name FILTER html %] already exists. @@ -618,6 +624,19 @@ In order to delete this group, you first have to change the [%+ param FILTER html %] to make [% attr FILTER html %] point to another group. + + [% ELSIF error == "group_invalid_removal" %] + You tried to remove [% terms.bug %] [%+ bug.id FILTER html %] + from group id [% group_id FILTER html %], but [% terms.bugs %] in the + '[% product.name FILTER html %]' product can not be removed from that + group. + + [% ELSIF error == "group_invalid_restriction" %] + You tried to restrict [% terms.bug %] [%+ bug.id FILTER html %] to + to group id [% group_id FILTER html %], but [% terms.bugs %] in the + '[% product.name FILTER html %]' product can not be restricted to + that group. + [% ELSIF error == "group_not_specified" %] [% title = "Group not specified" %] No group was specified. |