19 lines
628 B
HTML
19 lines
628 B
HTML
<?php Block::put('breadcrumb') ?>
|
|
<ul>
|
|
<li><a href="<?= Backend::url('system/requestlogs') ?>"><?= e(trans('system::lang.request_log.menu_label')) ?></a></li>
|
|
<li><?= e($this->pageTitle) ?></li>
|
|
</ul>
|
|
<?php Block::endPut() ?>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<div class="layout-item stretch layout-column form-preview">
|
|
<?= $this->formRenderPreview() ?>
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<p class="flash-message static error"><?= e($this->fatalError) ?></p>
|
|
<p><a href="<?= Backend::url('system/requestlogs') ?>" class="btn btn-default">Return to request log list</a></p>
|
|
|
|
<?php endif ?> |