Fix control layout in the module overview

refs #5543
This commit is contained in:
Johannes Meyer 2015-10-01 16:23:49 +02:00
parent 08ab0befcd
commit 0bf13383b6

View File

@ -1,9 +1,17 @@
<?php if (! $this->compact): ?> <?php if (! $this->compact): ?>
<div class="controls"> <div class="controls">
<?= $this->tabs; ?> <?= $this->tabs; ?>
<?= $this->sortBox; ?> <div class="grid dont-print">
<?= $this->limiter; ?> <div class="col-1-3 text-left">
<?= $this->paginator; ?> <?= $this->limiter ?>
</div>
<div class="col-1-3">
<?= $this->paginator ?>
</div>
<div class="col-1-3 text-right">
<?= $this->sortBox ?>
</div>
</div>
<?= $this->filterEditor; ?> <?= $this->filterEditor; ?>
</div> </div>
<?php endif ?> <?php endif ?>