17 lines
340 B
PHTML
17 lines
340 B
PHTML
<div class="controls">
|
|
<?= $this->tabs ?>
|
|
<h1><?= $this->escape($this->title) ?></h1>
|
|
<span class="action-links">
|
|
<?= $this->addLink ?>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<?= $this->form ?>
|
|
<?php foreach ($this->tables as $key => $table): ?>
|
|
<?php if (count($table)): ?>
|
|
<?= $table->render() ?>
|
|
<?php endif ?>
|
|
<?php endforeach ?>
|
|
</div>
|