<section id="main"> <div class="page-header"> <?php if ($this->user->hasAccess('user', 'create')): ?> <ul> <li><i class="fa fa-plus fa-fw"></i><?= $this->url->link(t('New local user'), 'user', 'create') ?></li> <li><i class="fa fa-plus fa-fw"></i><?= $this->url->link(t('New remote user'), 'user', 'create', array('remote' => 1)) ?></li> <li><i class="fa fa-upload fa-fw"></i><?= $this->url->link(t('Import'), 'userImport', 'step1') ?></li> <li><i class="fa fa-users fa-fw"></i><?= $this->url->link(t('View all groups'), 'group', 'index') ?></li> </ul> <?php endif ?> </div> <?php if ($paginator->isEmpty()): ?> <p class="alert"><?= t('No user') ?></p> <?php else: ?> <table class="table-stripped"> <tr> <th class="column-18"><?= $paginator->order(t('Username'), 'username') ?></th> <th class="column-18"><?= $paginator->order(t('Name'), 'name') ?></th> <th class="column-15"><?= $paginator->order(t('Email'), 'email') ?></th> <th class="column-15"><?= $paginator->order(t('Role'), 'role') ?></th> <th class="column-10"><?= $paginator->order(t('Two Factor'), 'twofactor_activated') ?></th> <th class="column-10"><?= $paginator->order(t('Account type'), 'is_ldap_user') ?></th> <th class="column-10"><?= $paginator->order(t('Status'), 'is_active') ?></th> <th class="column-5"><?= t('Actions') ?></th> </tr> <?php foreach ($paginator->getCollection() as $user): ?> <tr> <td> <?= '#'.$user['id'] ?> <?= $this->url->link($this->text->e($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?> </td> <td> <?= $this->text->e($user['name']) ?> </td> <td> <a href="mailto:<?= $this->text->e($user['email']) ?>"><?= $this->text->e($user['email']) ?></a> </td> <td> <?= $this->user->getRoleName($user['role']) ?> </td> <td> <?= $user['twofactor_activated'] ? t('Yes') : t('No') ?> </td> <td> <?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?> </td> <td> <?php if ($user['is_active'] == 1): ?> <?= t('Active') ?> <?php else: ?> <?= t('Inactive') ?> <?php endif ?> </td> <td> <?= $this->render('user/dropdown', array('user' => $user)) ?> </td> </tr> <?php endforeach ?> </table> <?= $paginator ?> <?php endif ?> </section>