r218: Duplicates are now done
[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
14 $customfields
15
16 <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>
17
18 <br />
19
20 <if condition="$show['getattachments'] OR $show['putattachments']">
21 <table border="1" cellspacing="2" cellpadding="4">
22 <thead style="background-color: #EEEEEE">
23 <tr>
24 <td>Attachments</td>
25 </tr>
26 </thead>
27 <tbody>
28 $attachments
29 <if condition="$show['putattachments']">
30 <tr>
31 <td style="background-color: #999999">[<a href="attachment.php?do=add&amp;bugid=$bug[bugid]">Add New Attachment</a>]</td>
32 </tr>
33 </if>
34 </tbody>
35 </table>
36
37 <br />
38 </if>
39
40 $comments
41
42 <if condition="$show['newreply']"><div>[<a href="newcomment.php?bugid=$bug[bugid]">New Comment</a>]</div></if>