r227: Dependency system is now finished. The tree has yet to be implemented, but...
[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<if condition="$bug['hidden']"> style="color: red"</if>>Hidden:</strong> <input type="checkbox" name="hidden" value="1"<if condition="$bug['hidden']"> checked="checked"</if> /></div>
7 <div><strong>Summary/Title:</strong> <input type="text" name="summary" size="25" value="$bug[summary]" /></div>
8 <div><strong>Severity:</strong> <select name="severity">$select[severity]</select></div>
9
10 <if condition="$show['changestatus']">
11 <div><strong>Priority:</strong> <select name="priority">$select[priority]</select></div>
12 <div><strong>Status:</strong> <select name="status">$select[status]</select></div>
13 <div><strong>Resolution:</strong> <select name="resolution">$select[resolution]</select></div>
14 </if>
15
16 <if condition="$show['assign']">
17 <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>
18 </if>
19
20 <div><strong>Duplicate of:</strong> <input type="text" name="duplicateof" size="10" value="<if condition="$bug['duplicateof']">$bug[duplicateof]</if>" /> <if condition="$bug['duplicateof']"><a href="showreport.php?bugid=$bug[duplicateof]" target="_blank">$duplicate[summary]</a></if>
21
22 <div><strong>Dependencies:</strong> <input type="text" name="dependency" size="25" value="$bug[dependency]" /> $dependencies
23
24 <div><strong>Product/Component/Version:</strong>
25 <div>$pcv_select</div>
26 </div>
27
28 <div><strong>First Comment:</strong></div><textarea name="firstcomment" cols="100" rows="35">$firstcomment[comment]</textarea>
29
30 $customfields
31
32 <div><input type="submit" name="submit" value="Save Changes" />
33 </form>