summaryrefslogtreecommitdiff
path: root/app/Template/user/last.php
blob: ab25f79b9fcabfe32c9767f04c58872bb943e04a (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
<div class="page-header">
    <h2><?= t('Last logins') ?></h2>
</div>

<?php if (empty($last_logins)): ?>
    <p class="alert"><?= t('Never connected.') ?></p>
<?php else: ?>
    <table class="table-small">
    <tr>
        <th><?= t('Login date') ?></th>
        <th><?= t('Authentication method') ?></th>
        <th><?= t('IP address') ?></th>
        <th><?= t('User agent') ?></th>
    </tr>
    <?php foreach($last_logins as $login): ?>
    <tr>
        <td><?= dt('%B %e, %Y at %k:%M %p', $login['date_creation']) ?></td>
        <td><?= $this->e($login['auth_type']) ?></td>
        <td><?= $this->e($login['ip']) ?></td>
        <td><?= $this->e($this->text->truncate($login['user_agent'])) ?></td>
    </tr>
    <?php endforeach ?>
    </table>
<?php endif ?>