24 lines
695 B
HTML
24 lines
695 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>
|
|
|
|
<?php endif ?>
|
|
|
|
<p>
|
|
<a href="<?= Backend::url('system/requestlogs') ?>" class="btn btn-default oc-icon-chevron-left">
|
|
<?= e(trans('system::lang.request_log.return_link')) ?>
|
|
</a>
|
|
</p> |