-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (29 loc) · 869 Bytes
/
index.php
File metadata and controls
32 lines (29 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php require_once __DIR__."/header.php"; ?>
<table>
<thead>
<tr>
<th>Report Type</th>
<th>Message</th>
<th>Link</th>
<th>Email</th>
<th>Created At</th>
</tr>
</thead>
<tbody>
<?php if(isset($bugReports)): ?>
<?php foreach($bugReports as $report): ?>
<tr>
<td><?php echo $report->getReportType(); ?></td>
<td><?php echo $report->getEmail(); ?></td>
<td><?php echo $report->getMessage(); ?></td>
<td><?php echo $report->getLink(); ?></td>
<td><?php echo $report->getCreatedAt(); ?></td>
<td>
<a href="#update-<?php echo $report->getId(); ?>">Update</a>
<a href="#delete-<?php echo $report->getId(); ?>">Delete</a>
</td>
</tr>
<?php endforeach; ?>
<?php endif;?>
</tbody>
</table>