r206: Allow bugs to be hidden for security reasons or if they want to look deleted.
[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
12 $customfields
13
14 <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>
15
16 <br />
17
18 <if condition="$show['getattachments'] OR $show['putattachments']">
19 <table border="1" cellspacing="2" cellpadding="4">
20 <thead style="background-color: #EEEEEE">
21 <tr>
22 <td>Attachments</td>
23 </tr>
24 </thead>
25 <tbody>
26 $attachments
27 <if condition="$show['putattachments']">
28 <tr>
29 <td style="background-color: #999999">[<a href="attachment.php?do=add&amp;bugid=$bug[bugid]">Add New Attachment</a>]</td>
30 </tr>
31 </if>
32 </tbody>
33 </table>
34
35 <br />
36 </if>
37
38 $comments
39
40 <if condition="$show['newreply']"><div>[<a href="newcomment.php?bugid=$bug[bugid]">New Comment</a>]</div></if>