Reworked the paginator number display to play nice with Bootstrap
This commit is contained in:
parent
fa3725d377
commit
c41810bbf1
|
@ -56,8 +56,11 @@ echo $this->Form->inputs(array(
|
||||||
</div>
|
</div>
|
||||||
<?php $this->end(); ?>
|
<?php $this->end(); ?>
|
||||||
|
|
||||||
|
<ul class="pagination">
|
||||||
|
<?php echo $this->Paginator->numbers(array('tag' => 'li', 'separator' => false, 'currentClass' => 'active', 'currentTag' => 'span')); ?>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<div id="Events">
|
<div id="Events">
|
||||||
<div style="clear:both;"><?php echo $this->Paginator->numbers(); ?></div>
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Thumbnail</th>
|
<th>Thumbnail</th>
|
||||||
|
@ -96,5 +99,8 @@ foreach ($events as $key => $value) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
<div style="clear:both;"><?php echo $this->Paginator->numbers(); ?></div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<ul class="pagination">
|
||||||
|
<?php echo $this->Paginator->numbers(array('tag' => 'li', 'separator' => false, 'currentClass' => 'active', 'currentTag' => 'span')); ?>
|
||||||
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue