r231: Removing template sets. Part 1 of 3 in a multi-stage commit.
[bugdar.git] / templates / newreport.tpl
1 <form name="bugreport" action="newreport.php" method="post">
2 <input type="hidden" name="do" value="insert" />
3
4 <div><strong>Summary/Title:</strong> <input type="text" name="summary" size="25" /></div>
5 <div><strong>Severity:</strong> <select name="severity">$select[severity]</select></div>
6
7 <if condition="$show['changestatus']">
8 <div><strong>Priority:</strong> <select name="priority">$select[priority]</select></div>
9 <div><strong>Status:</strong> <select name="status">$select[status]</select></div>
10 <div><strong>Resolution:</strong> <select name="resolution">$select[resolution]</select></div>
11 </if>
12
13 <if condition="$show['assign']">
14 <div><strong>Assigned to:</strong> <select name="assignedto"><option value="0">No Assignment</option>$select[dev]</select></div>
15 </if>
16
17 <div><strong>Detailed description:</strong><div><textarea name="comment" rows="15" cols="75">{$bugsys->options['defaultcomment']}</textarea></div></div>
18
19 <div><strong>Product/Component/Version:</strong>
20 <div>$pcv_select</div>
21 </div>
22
23 <input type="submit" name="submit" value=" Proceed " />
24 </form>