|
From: Benjamin C. <bc...@us...> - 2001-11-08 14:27:38
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv12608/templates/default
Modified Files:
bugdisplay.html
Log Message:
You can use a text box or a select box for assigning bugs to developers
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- bugdisplay.html 2001/11/03 19:24:07 1.9
+++ bugdisplay.html 2001/11/08 14:27:35 1.10
@@ -102,7 +102,14 @@
<input type="radio" name="outcome" value="dupe">
Resolve bug, mark it as a duplicate of bug #<input type="text" name="dupenum" size="5"><br>
<input type="radio" name="outcome" value="reassign">
- Reassign bug to <input type="text" name="reassignto"><br>
+ Reassign bug to
+ <!--
+ Uncomment the text box and remove the select box if you want users
+ to type in the login for assignment (e.g., to hide developer email addresses)
+ <input type="text" name="reassignto">
+ -->
+ <select name="reassignto"><option value="0">Choose one</option>{developer_list}</select>
+ <br>
<input type="radio" name="outcome" value="reassigntocomponent">
Reassign bug to owner of selected component<br>
<!-- END rrow -->
|