ORIENT/modules/system/controllers/requestlogs/preview.htm

24 lines
695 B
HTML
Raw Normal View History

<?php Block::put('breadcrumb') ?>
<ul>
2014-07-30 07:51:44 +00:00
<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>