49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
<?php Block::put('breadcrumb') ?>
|
|
<ul>
|
|
<li><a href="<?= Backend::url('zoomyboy/event/participant') ?>">Participant</a></li>
|
|
<li><?= e($this->pageTitle) ?></li>
|
|
</ul>
|
|
<?php Block::endPut() ?>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<?= Form::open(['class' => 'layout']) ?>
|
|
|
|
<div class="layout-row">
|
|
<?= $this->formRender() ?>
|
|
</div>
|
|
|
|
<div class="form-buttons">
|
|
<div class="loading-indicator-container">
|
|
<button
|
|
type="submit"
|
|
data-request="onSave"
|
|
data-hotkey="ctrl+s, cmd+s"
|
|
data-load-indicator="Creating Participant..."
|
|
class="btn btn-primary">
|
|
Create
|
|
</button>
|
|
<button
|
|
type="button"
|
|
data-request="onSave"
|
|
data-request-data="close:1"
|
|
data-hotkey="ctrl+enter, cmd+enter"
|
|
data-load-indicator="Creating Participant..."
|
|
class="btn btn-default">
|
|
Create and Close
|
|
</button>
|
|
<span class="btn-text">
|
|
or <a href="<?= Backend::url('zoomyboy/event/participant') ?>">Cancel</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<?= Form::close() ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<p class="flash-message static error"><?= e($this->fatalError) ?></p>
|
|
<p><a href="<?= Backend::url('zoomyboy/event/participant') ?>" class="btn btn-default">Return to participant list</a></p>
|
|
|
|
<?php endif ?>
|