r200: - Show edit fields on editreport.php and editreport.tpl
[bugdar.git] / templates / default / editreport.tpl
1 <form name="bugreport" action="editreport.php" method="post">
2 <input type="hidden" name="do" value="update" />
3 <input type="hidden" name="bugid" value="$bug[bugid]" />
4
5 <div><strong>Bug ID:</strong> $bug[bugid]</div>
6 <div><strong>Summary/Title:</strong> <input type="text" name="summary" size="25" value="$bug[summary]" /></div>
7 <div><strong>Severity:</strong> <select name="severity">$select[severity]</select></div>
8
9 <if condition="$show['changestatus']">
10 <div><strong>Priority:</strong> <select name="priority">$select[priority]</select></div>
11 <div><strong>Status:</strong> <select name="status">$select[status]</select></div>
12 <div><strong>Resolution:</strong> <select name="resolution">$select[resolution]</select></div>
13 </if>
14
15 <if condition="$show['assign']">
16 <div><strong>Assigned to:</strong> <select name="assignedto"><option value="0"<if condition="!$bug['assignedto']"> selected="selected"</if>>No Assignment</option>$select[dev]</select></div>
17 </if>
18
19 <div><strong>Product/Component/Version:</strong>
20 <div>$pcv_select</div>
21 </div>
22
23 <div><strong>First Comment:</strong></div><textarea name="firstcomment" cols="100" rows="35">$firstcomment[comment]</textarea>
24
25 $customfields
26
27 <div><input type="submit" name="submit" value="Save Changes" />
28 </form>