mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 01:04:09 +02:00
Remove unncessary controls in the application log view
This commit is contained in:
parent
cb4b460f3f
commit
5e2e741a7e
@ -1,18 +1,10 @@
|
|||||||
<?php if (! $this->compact): ?>
|
<?php if (! $this->compact): ?>
|
||||||
<div class="controls">
|
<div class="controls separated">
|
||||||
<?= $this->tabs; ?>
|
<?= $this->tabs ?>
|
||||||
<div class="grid dont-print">
|
<div class="grid">
|
||||||
<div class="col-1-3 text-left">
|
|
||||||
<?= $this->limiter ?>
|
<?= $this->limiter ?>
|
||||||
</div>
|
|
||||||
<div class="col-1-3">
|
|
||||||
<?= $this->paginator ?>
|
<?= $this->paginator ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-1-3 text-right">
|
|
||||||
<?= $this->sortBox ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?= $this->filterEditor; ?>
|
|
||||||
</div>
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
@ -20,7 +12,7 @@
|
|||||||
<table class="action">
|
<table class="action">
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($this->logData as $value): ?>
|
<?php foreach ($this->logData as $value): ?>
|
||||||
<?php $datetime = new Datetime($value->datetime); ?>
|
<?php $datetime = new Datetime($value->datetime) ?>
|
||||||
<tr class="state">
|
<tr class="state">
|
||||||
<td style="width: 6em; text-align: center">
|
<td style="width: 6em; text-align: center">
|
||||||
<?= $this->escape($datetime->format('d.m. H:i')) ?><br />
|
<?= $this->escape($datetime->format('d.m. H:i')) ?><br />
|
||||||
@ -30,8 +22,8 @@
|
|||||||
<?= nl2br($this->escape($value->message), false) ?>
|
<?= nl2br($this->escape($value->message), false) ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?php endif; ?>
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user