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:
Kyle Johnson 2013-05-29 07:45:47 -04:00
parent d5e60e8b78
commit 47af648803
1 changed files with 3 additions and 1 deletions

View File

@ -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>