summaryrefslogtreecommitdiff
path: root/app/Template/user/index.php
blob: a6da9f6592ece2b34f8892b915c6c133077d45c3 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<section id="main">
    <div class="page-header">
        <?php if ($this->acl->isAdminUser()): ?>
        <ul>
            <li><i class="fa fa-plus fa-fw"></i><?= $this->a(t('New user'), 'user', 'create') ?></li>
        </ul>
        <?php endif ?>
    </div>
    <section>
    <?php if (empty($users)): ?>
        <p class="alert"><?= t('No user') ?></p>
    <?php else: ?>
        <table>
            <tr>
                <th><?= $this->order(t('Id'), 'id', $pagination) ?></th>
                <th><?= $this->order(t('Username'), 'username', $pagination) ?></th>
                <th><?= $this->order(t('Name'), 'name', $pagination) ?></th>
                <th><?= $this->order(t('Email'), 'email', $pagination) ?></th>
                <th><?= $this->order(t('Administrator'), 'is_admin', $pagination) ?></th>
                <th><?= $this->order(t('Default project'), 'default_project_id', $pagination) ?></th>
                <th><?= $this->order(t('Notifications'), 'notifications_enabled', $pagination) ?></th>
                <th><?= t('External accounts') ?></th>
                <th><?= $this->order(t('Account type'), 'is_ldap_user', $pagination) ?></th>
            </tr>
            <?php foreach ($users as $user): ?>
            <tr>
                <td>
                    <?= $this->a('#'.$user['id'], 'user', 'show', array('user_id' => $user['id'])) ?>
                </td>
                <td>
                    <?= $this->a($this->e($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?>
                </td>
                <td>
                    <?= $this->e($user['name']) ?>
                </td>
                <td>
                    <a href="mailto:<?= $this->e($user['email']) ?>"><?= $this->e($user['email']) ?></a>
                </td>
                <td>
                    <?= $user['is_admin'] ? t('Yes') : t('No') ?>
                </td>
                <td>
                    <?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? $this->e($projects[$user['default_project_id']]) : t('None'); ?>
                </td>
                <td>
                    <?php if ($user['notifications_enabled'] == 1): ?>
                        <?= t('Enabled') ?>
                    <?php else: ?>
                        <?= t('Disabled') ?>
                    <?php endif ?>
                </td>
                <td>
                    <ul class="no-bullet">
                    <?php if ($user['google_id']): ?>
                        <li><i class="fa fa-google fa-fw"></i><?= t('Google account linked') ?></li>
                    <?php endif ?>
                    <?php if ($user['github_id']): ?>
                        <li><i class="fa fa-github fa-fw"></i><?= t('Github account linked') ?></li>
                    <?php endif ?>
                    </ul>
                </td>
                <td>
                    <?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?>
                </td>
            </tr>
            <?php endforeach ?>
        </table>

        <?= $this->paginate($pagination) ?>
    <?php endif ?>
    </section>
</section>