2015-04-17 16:09:17 +02:00
|
|
|
<?php if (! $this->compact): ?>
|
2015-11-03 12:50:02 +01:00
|
|
|
<div class="controls separated">
|
|
|
|
<?= $this->tabs ?>
|
2019-07-19 15:42:32 +02:00
|
|
|
<?= $this->paginator ?>
|
|
|
|
<div class="sort-controls-container">
|
2015-11-03 12:50:02 +01:00
|
|
|
<?= $this->limiter ?>
|
2015-10-01 16:10:09 +02:00
|
|
|
</div>
|
2014-03-19 16:57:11 +01:00
|
|
|
</div>
|
2015-04-17 16:09:17 +02:00
|
|
|
<?php endif ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
<div class="content">
|
2015-11-03 12:50:02 +01:00
|
|
|
<?php if ($this->logData !== null): ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
<table class="action">
|
2015-11-03 12:50:02 +01:00
|
|
|
<tbody>
|
|
|
|
<?php foreach ($this->logData as $value): ?>
|
|
|
|
<?php $datetime = new Datetime($value->datetime) ?>
|
|
|
|
<tr class="state">
|
|
|
|
<td style="width: 6em; text-align: center">
|
|
|
|
<?= $this->escape($datetime->format('d.m. H:i')) ?><br />
|
|
|
|
<?= $this->escape($value->loglevel) ?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?= nl2br($this->escape($value->message), false) ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</tbody>
|
2014-03-19 16:57:11 +01:00
|
|
|
</table>
|
2015-11-03 12:50:02 +01:00
|
|
|
<?php endif ?>
|
2014-09-03 12:44:23 +02:00
|
|
|
</div>
|