mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
parent
bff45a1eb2
commit
872fa2ac6c
@ -47,7 +47,7 @@
|
|||||||
src="<?php echo $this->baseUrl('js/vendor/require.js') ?>"></script>
|
src="<?php echo $this->baseUrl('js/vendor/require.js') ?>"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body class="cranberry">
|
<body>
|
||||||
<?= $this->render('body.phtml') ?>
|
<?= $this->render('body.phtml') ?>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
||||||
<?= $this->escape($this->auth()->getUser()->getUsername()); ?>
|
<?= $this->escape($this->auth()->getUser()->getUsername()); ?>
|
||||||
<i class="icon-user icon-white" style="margin-top:0.2em"></i>
|
<i>USER ICON</i>
|
||||||
<b class="caret"></b>
|
<b class="caret"></b>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
|
@ -22,10 +22,10 @@ $modules = $this->modules->paginate();
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<? if ($module->enabled): ?>
|
<? if ($module->enabled): ?>
|
||||||
<i class="icon-ok-sign"></i>
|
<i>ICON OK</i>
|
||||||
<a href="<?= $disableUrl ?>"><?= $this->escape($module->name); ?></a>
|
<a href="<?= $disableUrl ?>"><?= $this->escape($module->name); ?></a>
|
||||||
<? else: ?>
|
<? else: ?>
|
||||||
<i class="icon-remove-sign"></i>
|
<i>ICON REMOVE</i>
|
||||||
<a href="<?= $enableUrl ?>"><?= $this->escape($module->name); ?></a>
|
<a href="<?= $enableUrl ?>"><?= $this->escape($module->name); ?></a>
|
||||||
<? endif ?>
|
<? endif ?>
|
||||||
(<?=
|
(<?=
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td><?= $object->host_name; ?></td>
|
<td><?= $object->host_name; ?></td>
|
||||||
<td><?= (isset($object->service_description) ? $object->service_description : ''); ?></td>
|
<td><?= (isset($object->service_description) ? $object->service_description : ''); ?></td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -22,7 +21,7 @@
|
|||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php if ($this->form): ?>
|
<?php if ($this->form): ?>
|
||||||
<div style="border: 1px #cc0000 solid; padding: 5px; margin: 10px 0 0 10px; max-width: 600px;">
|
<div>
|
||||||
<?= $this->form; ?>
|
<?= $this->form; ?>
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user