r295: Added global page elements to main pages.
[bugdar.git] / templates / newreport.tpl
1 $doctype
2 $headinclude
3 $header
4
5 <form name="bugreport" action="newreport.php" method="post">
6 <input type="hidden" name="do" value="insert" />
7
8 <div><strong>Summary/Title:</strong> <input type="text" name="summary" size="25" /></div>
9 <div><strong>Severity:</strong> <select name="severity">$select[severity]</select></div>
10
11 <if condition="$show['changestatus']">
12 <div><strong>Priority:</strong> <select name="priority">$select[priority]</select></div>
13 <div><strong>Status:</strong> <select name="status">$select[status]</select></div>
14 <div><strong>Resolution:</strong> <select name="resolution">$select[resolution]</select></div>
15 </if>
16
17 <if condition="$show['assign']">
18 <div><strong>Assigned to:</strong> <select name="assignedto"><option value="0">No Assignment</option>$select[dev]</select></div>
19 </if>
20
21 <div><strong>Detailed description:</strong><div><textarea name="comment" rows="15" cols="75">{$bugsys->options['defaultcomment']}</textarea></div></div>
22
23 <div><strong>Product/Component/Version:</strong>
24 <div>$pcv_select</div>
25 </div>
26
27 <input type="submit" name="submit" value=" Proceed " />
28 </form>
29
30 $footer