Revert "Remove bootstrap classes"
This reverts commit 682472ca6b744c80dce1b422520c4c072cb850d2.
This commit is contained in:
parent
7062c5ab2d
commit
0d1d181d51
|
@ -8,7 +8,7 @@
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php if ($this->form->getErrorMessages()): ?>
|
<?php if ($this->form->getErrorMessages()): ?>
|
||||||
<div>
|
<div class="alert alert-danger">
|
||||||
<?php foreach ($this->form->getErrorMessages() as $error): ?>
|
<?php foreach ($this->form->getErrorMessages() as $error): ?>
|
||||||
<?= $this->escape($error); ?><br/>
|
<?= $this->escape($error); ?><br/>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
|
@ -10,14 +10,14 @@
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php if ($this->successMessage): ?>
|
<?php if ($this->successMessage): ?>
|
||||||
<div>
|
<div class="alert alert-success">
|
||||||
<i class="icinga-icon-success"></i>
|
<i class="icinga-icon-success"></i>
|
||||||
<strong><?= $this->escape($this->successMessage); ?></strong>
|
<strong><?= $this->escape($this->successMessage); ?></strong>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php if (!empty($errors)) : ?>
|
<?php if (!empty($errors)) : ?>
|
||||||
<div>
|
<div class="alert alert-danger">
|
||||||
<h4>Errors occured when trying to save the project.</h4>
|
<h4>Errors occured when trying to save the project.</h4>
|
||||||
<p>
|
<p>
|
||||||
The following errors occured when trying to save the configuration:
|
The following errors occured when trying to save the configuration:
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
?>
|
?>
|
||||||
<?= $this->tabs->render($this); ?>
|
<?= $this->tabs->render($this); ?>
|
||||||
<br/>
|
<br/>
|
||||||
<div>
|
<div class="alert alert-error">
|
||||||
<h1>Could not <?= $action; ?> module "<?= $moduleName; ?>"</h1>
|
<h1>Could not <?= $action; ?> module "<?= $moduleName; ?>"</h1>
|
||||||
<p>
|
<p>
|
||||||
While operation the following error occurred:
|
While operation the following error occurred:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<table>
|
<table class="table table-bordered" >
|
||||||
<thead>
|
<thead>
|
||||||
<tr style="text-align:left">
|
<tr style="text-align:left">
|
||||||
<th width="70%">Module</th>
|
<th width="70%">Module</th>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php if ($this->form->getErrorMessages()): ?>
|
<?php if ($this->form->getErrorMessages()): ?>
|
||||||
<div>
|
<div class="alert alert-danger">
|
||||||
<?php foreach ($this->form->getErrorMessages() as $error): ?>
|
<?php foreach ($this->form->getErrorMessages() as $error): ?>
|
||||||
<?= $this->escape($error); ?><br/>
|
<?= $this->escape($error); ?><br/>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
<div>
|
<div class="alert alert-error">
|
||||||
<h4><i>WARNING ICON</i>Saving "<?= $this->escape($this->file); ?>.ini" Failed</h4>
|
<h4><i>WARNING ICON</i>Saving "<?= $this->escape($this->file); ?>.ini" Failed</h4>
|
||||||
<br/>
|
<br/>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue