20 lines
		
	
	
		
			568 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			568 B
		
	
	
	
		
			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): ?>
 | |
| 
 | |
|     <div class="form-preview">
 | |
|         <?= $this->formRenderPreview() ?>
 | |
|     </div>
 | |
| 
 | |
| <?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 ?>
 |