Add limit-control and fix indentation of the eventhistory view

refs #6637
This commit is contained in:
Johannes Meyer 2014-08-18 15:30:59 +02:00
parent 043688e514
commit bbddb9ed87

View File

@ -4,6 +4,7 @@
<div style="margin: 1em" class="dontprint"> <div style="margin: 1em" class="dontprint">
<?= $this->translate('Sort by'); ?> <?= $this->sortControl->render($this); ?> <?= $this->translate('Sort by'); ?> <?= $this->sortControl->render($this); ?>
</div> </div>
<?= $this->widget('limiter', array('url' => $this->url, 'max' => $this->history->count())); ?>
<?= $this->paginationControl($history, null, null, array('preserve' => $this->preserve)); ?> <?= $this->paginationControl($history, null, null, array('preserve' => $this->preserve)); ?>
</div> </div>
<?php endif ?> <?php endif ?>
@ -14,9 +15,9 @@
</div> </div>
<?php return; endif ?> <?php return; endif ?>
<table data-base-target="_next" class="action"> <table data-base-target="_next" class="action">
<tbody> <tbody>
<?php foreach ($history as $event): ?> <?php foreach ($history as $event): ?>
<?php <?php
$stateName = 'invalid'; $stateName = 'invalid';
$isService = isset($event->service); $isService = isset($event->service);
@ -102,13 +103,13 @@
<?= $event->host; ?> <?= $event->host; ?>
</a> </a>
<?php endif ?> <?php endif ?>
<br> <br>
<div> <div>
<?= $this->icon($icon . '.png', $title); ?> <?= empty($msg) ? '' : $msg; ?> <?= $this->icon($icon . '.png', $title); ?> <?= empty($msg) ? '' : $msg; ?>
</div> </div>
</td> </td>
</tr> </tr>
<? endforeach ?> <? endforeach ?>
</tbody> </tbody>
</table> </table>
</div> </div>