mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 08:44:10 +02:00
parent
cb5f741f22
commit
d6283f1451
@ -32,7 +32,7 @@ if (! $this->compact): ?>
|
|||||||
<h1><?= $this->translate('This Host\'s Event History'); ?></h1>
|
<h1><?= $this->translate('This Host\'s Event History'); ?></h1>
|
||||||
<?= $this->sortBox; ?>
|
<?= $this->sortBox; ?>
|
||||||
<?= $this->limiter; ?>
|
<?= $this->limiter; ?>
|
||||||
<a class="load-more-hint" href="#load-more">
|
<a href="#load-more">
|
||||||
<?= $this->translate('Scroll to the bottom of this page to load additional events'); ?>
|
<?= $this->translate('Scroll to the bottom of this page to load additional events'); ?>
|
||||||
</a>
|
</a>
|
||||||
<?= $this->filterEditor; ?>
|
<?= $this->filterEditor; ?>
|
||||||
@ -151,7 +151,7 @@ if (! $this->compact): ?>
|
|||||||
<?php if (! $history->hasResult()): ?>
|
<?php if (! $history->hasResult()): ?>
|
||||||
<?= $this->translate('No history events found matching the filter'); ?>
|
<?= $this->translate('No history events found matching the filter'); ?>
|
||||||
<?php elseif ($history->hasMore()): ?>
|
<?php elseif ($history->hasMore()): ?>
|
||||||
<div class="load-more-container"><?= $this->qlink(
|
<?= $this->qlink(
|
||||||
$this->translate('Load More'),
|
$this->translate('Load More'),
|
||||||
$url->setAnchor('page-' . ($page + 1)),
|
$url->setAnchor('page-' . ($page + 1)),
|
||||||
array(
|
array(
|
||||||
@ -159,8 +159,8 @@ if (! $this->compact): ?>
|
|||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'id' => 'load-more',
|
'id' => 'load-more',
|
||||||
'class' => 'pull-right load-more button-like'
|
'class' => 'pull-right action-link'
|
||||||
)
|
)
|
||||||
); ?></div>
|
); ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
|
@ -18,7 +18,7 @@ if (! $this->compact): ?>
|
|||||||
<?= $this->limiter ?>
|
<?= $this->limiter ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-1-3">
|
<div class="col-1-3">
|
||||||
<a class="load-more-hint" href="#load-more">
|
<a href="#load-more">
|
||||||
<?= $this->translate('Scroll to the bottom of this page to load additional events'); ?>
|
<?= $this->translate('Scroll to the bottom of this page to load additional events'); ?>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -124,7 +124,7 @@ if (! $this->compact): ?>
|
|||||||
)
|
)
|
||||||
); ?>
|
); ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<div class="load-more-container"><?= $this->qlink(
|
<?= $this->qlink(
|
||||||
$this->translate('Load More'),
|
$this->translate('Load More'),
|
||||||
$url->setAnchor('page-' . ($page + 1)),
|
$url->setAnchor('page-' . ($page + 1)),
|
||||||
array(
|
array(
|
||||||
@ -132,9 +132,9 @@ if (! $this->compact): ?>
|
|||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'id' => 'load-more',
|
'id' => 'load-more',
|
||||||
'class' => 'pull-right load-more button-like'
|
'class' => 'pull-right action-link'
|
||||||
)
|
)
|
||||||
); ?></div>
|
); ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,7 +31,7 @@ if (! $this->compact): ?>
|
|||||||
<h1><?= $this->translate('This Service\'s Event History'); ?></h1>
|
<h1><?= $this->translate('This Service\'s Event History'); ?></h1>
|
||||||
<?= $this->sortBox; ?>
|
<?= $this->sortBox; ?>
|
||||||
<?= $this->limiter; ?>
|
<?= $this->limiter; ?>
|
||||||
<a class="load-more-hint" href="#load-more">
|
<a href="#load-more">
|
||||||
<?= $this->translate('Scroll to the bottom of this page to load additional events'); ?>
|
<?= $this->translate('Scroll to the bottom of this page to load additional events'); ?>
|
||||||
</a>
|
</a>
|
||||||
<?= $this->filterEditor; ?>
|
<?= $this->filterEditor; ?>
|
||||||
@ -135,7 +135,7 @@ if (! $this->compact): ?>
|
|||||||
<?php if (! $history->hasResult()): ?>
|
<?php if (! $history->hasResult()): ?>
|
||||||
<?= $this->translate('No history events found matching the filter'); ?>
|
<?= $this->translate('No history events found matching the filter'); ?>
|
||||||
<?php elseif ($history->hasMore()): ?>
|
<?php elseif ($history->hasMore()): ?>
|
||||||
<div class="load-more-container"><?= $this->qlink(
|
<?= $this->qlink(
|
||||||
$this->translate('Load More'),
|
$this->translate('Load More'),
|
||||||
$url->setAnchor('page-' . ($page + 1)),
|
$url->setAnchor('page-' . ($page + 1)),
|
||||||
array(
|
array(
|
||||||
@ -143,8 +143,8 @@ if (! $this->compact): ?>
|
|||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'id' => 'load-more',
|
'id' => 'load-more',
|
||||||
'class' => 'pull-right load-more button-like'
|
'class' => 'pull-right action-link'
|
||||||
)
|
)
|
||||||
); ?></div>
|
); ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user