17 lines
481 B
PHTML
17 lines
481 B
PHTML
<div class="controls">
|
|
<?= $this->tabs ?>
|
|
<h1><?= $this->escape($this->title) ?></h1>
|
|
<span class="action-links"<?php if (! $this->stayHere): ?> data-base-target="_next"<?php endif ?>>
|
|
<?= $this->addLink ?>
|
|
</span>
|
|
<?= $this->filterEditor ?>
|
|
<?= $this->table->getPaginator() ?>
|
|
</div>
|
|
|
|
<div class="content"<?php if (! $this->stayHere): ?> data-base-target="_next"<?php endif ?>>
|
|
<?= $this->form ?>
|
|
<?php if ($table->count()): ?>
|
|
<?= $this->table->render() ?>
|
|
<?php endif ?>
|
|
</div>
|