22 lines
628 B
HTML
22 lines
628 B
HTML
|
<?php Block::put('breadcrumb') ?>
|
||
|
<ul>
|
||
|
<li><a href="<?= Backend::url('jasonwilliams/feed/channels') ?>">Channels</a></li>
|
||
|
<li><?= e($this->pageTitle) ?></li>
|
||
|
</ul>
|
||
|
<?php Block::endPut() ?>
|
||
|
|
||
|
<?php if (!$this->fatalError): ?>
|
||
|
|
||
|
<div class="form-preview">
|
||
|
<?= $this->formRenderPreview() ?>
|
||
|
</div>
|
||
|
|
||
|
<?php else: ?>
|
||
|
<p class="flash-message static error"><?= e($this->fatalError) ?></p>
|
||
|
<?php endif ?>
|
||
|
|
||
|
<p>
|
||
|
<a href="<?= Backend::url('jasonwilliams/feed/channels') ?>" class="btn btn-default oc-icon-chevron-left">
|
||
|
<?= e(trans('backend::lang.form.return_to_list')) ?>
|
||
|
</a>
|
||
|
</p>
|