mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			364 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			364 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php if ($this->name): ?>
 | |
|   <h4><i> <i class="icinga-icon-edit"></i> Edit Backend "<?= $this->escape($this->name) ?>"</h4>
 | |
| <?php else: ?>
 | |
|   <h4> <i class="icinga-icon-create"></i> Create New Backend</h4>
 | |
| <?php endif; ?>
 | |
| 
 | |
| <?php if ($this->error): ?>
 | |
| <div class="alert alert-danger">
 | |
|   <?= $this->escape($this->error); ?>
 | |
| </div>
 | |
| <?php endif; ?>
 | |
| 
 | |
| <?= $this->form; ?> |