23 lines
656 B
Plaintext
23 lines
656 B
Plaintext
|
<h1>ZoneMinder Events</h1>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<th>MonitorId</th>
|
||
|
<th>Length</th>
|
||
|
</tr>
|
||
|
|
||
|
<!-- Here is where we loop through our $events array, printing out post info -->
|
||
|
|
||
|
<?php foreach ($events as $event): ?>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<?php echo $this->Html->link($event['Event']['Name'],
|
||
|
array('controller' => 'events', 'action' => 'view', $event['Event']['Id'])); ?>
|
||
|
<td><?php echo $event['Event']['MonitorId']; ?></td>
|
||
|
<td><?php echo $event['Event']['Length']; ?></td>
|
||
|
</tr>
|
||
|
<?php endforeach; ?>
|
||
|
<?php unset($event); ?>
|
||
|
<?php echo $this->Paginator->numbers(); ?>
|
||
|
</table>
|