r227: Dependency system is now finished. The tree has yet to be implemented, but...
[bugdar.git] / templates / default / SHOWREPORT.tpl
1 <if condition="$bug['hidden']"><div><strong style="color: red">This bug is hidden!</strong></div></if>
2
3 <div><strong>Bug ID:</strong> $bug[bugid]</div>
4 <div><strong>Reported by:</strong> $bug[userinfo]</div>
5 <div><strong>Product:</strong> $bug[product] <if condition="$bug['componentid']">/ <strong>Component:</strong> $bug[component]</if> / <strong>Version:</strong> $bug[version]</div>
6 <div><strong>Title / summary:</strong> $bug[summary]</div>
7 <div><strong>Status:</strong> $bug[status] / <strong>Resolution:</strong> $bug[resolution]</div>
8 <div><strong>Severity:</strong> $bug[severity]</div>
9 <div><strong>Priority:</strong> $bug[priority]</div>
10 <if condition="$bug['assigninfo']"><div><strong>Assigned to:</strong> $bug[assigninfo]</div></if>
11 <if condition="$bug['duplicateof']"><div><strong>Duplicate of:</strong> <a href="showreport.php?bugid=$bug[duplicateof]">$duplicateof[summary]</a></div></if>
12 <if condition="$dupelist"><div><strong>Bugs marked as duplicates of this:</strong> $dupelist</div></if>
13 <if condition="$dependencies"><div><strong>Dependencies:</strong> $dependencies</div></if>
14
15 $customfields
16
17 <div>[<a href="showhistory.php?bugid=$bug[bugid]">Show Bug History</a>]<if condition="$show['editreport']"> [<a href="editreport.php?bugid=$bug[bugid]">Edit Bug Report</a>]</if></div>
18
19 <br />
20
21 <if condition="$show['getattachments'] OR $show['putattachments']">
22 <table border="1" cellspacing="2" cellpadding="4">
23 <thead style="background-color: #EEEEEE">
24 <tr>
25 <td>Attachments</td>
26 </tr>
27 </thead>
28 <tbody>
29 $attachments
30 <if condition="$show['putattachments']">
31 <tr>
32 <td style="background-color: #999999">[<a href="attachment.php?do=add&amp;bugid=$bug[bugid]">Add New Attachment</a>]</td>
33 </tr>
34 </if>
35 </tbody>
36 </table>
37
38 <br />
39 </if>
40
41 $comments
42
43 <if condition="$show['newreply']"><div>[<a href="newcomment.php?bugid=$bug[bugid]">New Comment</a>]</div></if>