diff options
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index 638acbdcc..dec54e4e6 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -249,15 +249,16 @@ </label><br> [% END %] -[% knum = knum + 1 %] -<input id="knob-accept" type="radio" name="knob" value="accept"> -<label for="knob-accept"> - Accept [% terms.bugs %] (change status to <b>ASSIGNED</b>) -</label><br> - -[%# If all the bugs being changed are open, allow the user to close them. %] +[%# If all the bugs being changed are open, allow the user to accept them, + clear their resolution or resolve them. %] [% IF !bugstatuses.containsany(closedstates) %] [% knum = knum + 1 %] + <input id="knob-accept" type="radio" name="knob" value="accept"> + <label for="knob-accept"> + Accept [% terms.bugs %] (change status to <b>ASSIGNED</b>) + </label><br> + + [% knum = knum + 1 %] <input id="knob-clearresolution" type="radio" name="knob" value="clearresolution"> <label for="knob-clearresolution">Clear the resolution</label><br> |