diff options
author | dkl%redhat.com <> | 2009-01-04 05:38:35 +0100 |
---|---|---|
committer | dkl%redhat.com <> | 2009-01-04 05:38:35 +0100 |
commit | 43f03aa4fb7fce809332f05e6d973430a515f960 (patch) | |
tree | 57ab7c995eb739478e53e918cdf6077a23329006 /template/en/default/list | |
parent | dd52ea1b9baad23990c47a3186933e63b0cc01bb (diff) | |
download | bugzilla-43f03aa4fb7fce809332f05e6d973430a515f960.tar.gz bugzilla-43f03aa4fb7fce809332f05e6d973430a515f960.tar.xz |
Bug 99205: Allow mass-editing of dependencies
Patch by Dave Lawrence <dkl@redhat.com> - r/a=mkanat
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index 9fa5a1088..6a62a80dc 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -229,6 +229,36 @@ </tr> [% END %] + <tr> + <th> + <label for="dependson"> + Depends On: + </label> + </th> + <td colspan="3"> + <input id="dependson" name="dependson" size="32"> + <select name="dependson_action"> + <option value="add">Add these IDs</option> + <option value="remove">Delete these IDs</option> + </select> + </td> + </tr> + + <tr> + <th> + <label for="blocked"> + Blocks: + </label> + </th> + <td colspan="3"> + <input id="blocked" name="blocked" size="32"> + <select name="blocked_action"> + <option value="add">Add these IDs</option> + <option value="remove">Delete these IDs</option> + </select> + </td> + </tr> + [% IF Param('usestatuswhiteboard') %] <tr> <td align="right"> |