Skip to content

Commit

Permalink
servicegrid: fix controls
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
Johannes Meyer committed Oct 1, 2015
1 parent 786db66 commit a1beb66
Showing 1 changed file with 14 additions and 4 deletions.
Expand Up @@ -5,9 +5,17 @@ use Icinga\Web\Url;
if (! $this->compact): ?>
<div class="controls">
<?= $this->tabs; ?>
<?= $this->sortBox; ?>
<?= $this->limiter; ?>
<?= $this->paginator; ?>
<div class="grid dont-print">
<div class="col-1-3 text-left">
<?= $this->limiter ?>
</div>
<div class="col-1-3">
<?= $this->paginator ?>
</div>
<div class="col-1-3 text-right">
<?= $this->sortBox ?>
</div>
</div>
<?= $this->filterEditor; ?>
</div>
<?php endif ?>
Expand Down Expand Up @@ -103,6 +111,7 @@ $hostFilter = '(host_name=' . implode('|host_name=', array_keys($pivotData)) . '
),
array(
'data-base-target' => '_self',
'class' => 'action-link'
)
) ?>
<?= ++$i === (int) (count($pivotHeader['rows']) / 2) ? $expandLink : '' ?>
Expand All @@ -121,7 +130,8 @@ $hostFilter = '(host_name=' . implode('|host_name=', array_keys($pivotData)) . '
($this->verticalPaginator->getItemCountPerPage() + 20)
),
array(
'data-base-target' => '_self'
'data-base-target' => '_self',
'class' => 'action-link'
)
) ?>
</td>
Expand Down

0 comments on commit a1beb66

Please sign in to comment.