Minor HTML updates so that I can better select elements with jQuery later on.
Wrapped the Events table in a div, and gave the id #Events to that div.
This commit is contained in:
parent
d5e60e8b78
commit
47af648803
|
@ -24,8 +24,9 @@
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php unset($monitor); ?>
|
<?php unset($monitor); ?>
|
||||||
</table>
|
</table>
|
||||||
|
<div id="Events">
|
||||||
<?php echo $this->Paginator->numbers(); ?>
|
<?php echo $this->Paginator->numbers(); ?>
|
||||||
<table id="Events">
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Event Name</th>
|
<th>Event Name</th>
|
||||||
<th>Monitor Name</th>
|
<th>Monitor Name</th>
|
||||||
|
@ -44,3 +45,4 @@ array('controller' => 'events', 'action' => 'view', $event['Event']['Id'])); ?>
|
||||||
<?php unset($event); ?>
|
<?php unset($event); ?>
|
||||||
</table>
|
</table>
|
||||||
<?php echo $this->Paginator->numbers(); ?>
|
<?php echo $this->Paginator->numbers(); ?>
|
||||||
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue