r302: Closing un-cloesd divs.
[bugdar.git] / templates / editreport.tpl
1 $doctype
2 $headinclude
3 $header
4
5 <form name="bugreport" action="editreport.php" method="post">
6 <input type="hidden" name="do" value="update" />
7 <input type="hidden" name="bugid" value="$bug[bugid]" />
8
9 <div><strong>Bug ID:</strong> $bug[bugid]</div>
10 <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>
11 <div><strong>Summary/Title:</strong> <input type="text" name="summary" size="25" value="$bug[summary]" /></div>
12 <div><strong>Severity:</strong> <select name="severity">$select[severity]</select></div>
13
14 <if condition="$show['changestatus']">
15 <div><strong>Priority:</strong> <select name="priority">$select[priority]</select></div>
16 <div><strong>Status:</strong> <select name="status">$select[status]</select></div>
17 <div><strong>Resolution:</strong> <select name="resolution">$select[resolution]</select></div>
18 </if>
19
20 <if condition="$show['assign']">
21 <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>
22 </if>
23
24 <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></div>
25
26 <div><strong>Dependencies:</strong> <input type="text" name="dependency" size="25" value="$bug[dependency]" /> $dependencies</div>
27
28 <div><strong>Product/Component/Version:</strong>
29 <div>$pcv_select</div>
30 </div>
31
32 <div><strong>Automatic Response Action:</strong>
33 <div><select name="autoaction">$select[autoaction]</select></div>
34 </div>
35
36 <div><strong>First Comment:</strong></div><textarea name="firstcomment" cols="100" rows="35">$firstcomment[comment]</textarea>
37
38 $customfields
39
40 <div><input type="submit" name="submit" value="Save Changes" /></div>
41 </form>
42
43 $footer