mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-10 07:24:25 +02:00
16 lines
413 B
PHTML
16 lines
413 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('showCompact', 'limit')),
|
|
null,
|
|
array(
|
|
'data-base-target' => '_next',
|
|
'class' => 'action-link'
|
|
)
|
|
) ?>
|
|
</div>
|
|
<?php endif ?>
|