summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/log/index.phtml
blob: 79b9239620a054c08285adc2521f7bbb778db651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php if (! $this->compact): ?>
<div class="controls separated">
    <?= $this->tabs ?>
    <?= $this->paginator ?>
    <div class="sort-controls-container">
        <?= $this->limiter ?>
    </div>
</div>
<?php endif ?>
<div class="content">
<?php if ($this->logData !== null): ?>
    <table class="action">
        <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->type) ?>
                </td>
                <td style="width: 12em; text-align: center">
                    <?= $this->escape($value->identity) ?>
                </td>
                <td>
                    <?= nl2br($this->escape($value->message), false) ?>
                </td>
            </tr>
        <?php endforeach ?>
        </tbody>
    </table>
<?php endif ?>
</div>