16 lines
406 B
PHTML
16 lines
406 B
PHTML
<?php
|
|
/** @var \Icinga\Module\Monitoring\DataView\DataView $dataView */
|
|
if ($dataView->hasMore()): ?>
|
|
<div class="text-right">
|
|
<?= $this->qlink(
|
|
$this->translate('Show More'),
|
|
$this->url()->without(array('view', 'limit')),
|
|
null,
|
|
array(
|
|
'data-base-target' => '_next',
|
|
'class' => 'action-link'
|
|
)
|
|
) ?>
|
|
</div>
|
|
<?php endif ?>
|