2014-05-14 23:24:20 +10:00
|
|
|
<?= Block::put('head') ?><?= Block::endPut() ?>
|
|
|
|
|
|
|
|
<?= Block::put('sidepanel') ?>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<?= $this->makePartial('sidepanel') ?>
|
|
|
|
<?php endif ?>
|
|
|
|
<?= Block::endPut() ?>
|
|
|
|
|
|
|
|
<?= Block::put('body') ?>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<div
|
|
|
|
data-control="tab"
|
|
|
|
data-closable
|
|
|
|
data-close-confirmation="<?= e(trans('backend::lang.form.confirm_tab_close')) ?>"
|
|
|
|
data-pane-classes="layout-cell"
|
|
|
|
data-max-title-symbols="15"
|
|
|
|
data-title-as-file-names="true"
|
2015-07-11 08:43:43 +10:00
|
|
|
class="layout control-tabs master-tabs fancy-layout oc-bg-logo"
|
2014-05-14 23:24:20 +10:00
|
|
|
id="cms-master-tabs">
|
|
|
|
|
|
|
|
<div class="layout-row min-size">
|
|
|
|
<div class="tabs-container">
|
|
|
|
<ul class="nav nav-tabs"></ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tab-content layout-row">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php else: ?>
|
2014-10-15 19:53:44 +11:00
|
|
|
<p class="flash-message static error"><?= e(trans($this->fatalError)) ?></p>
|
2014-05-14 23:24:20 +10:00
|
|
|
<?php endif ?>
|
|
|
|
<?= Block::endPut() ?>
|