mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
65 lines
2.9 KiB
PHP
65 lines
2.9 KiB
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<?php if ($this->user->isAdmin()): ?>
|
|
<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>
|
|
</ul>
|
|
<?php endif ?>
|
|
</div>
|
|
<?php if ($paginator->isEmpty()): ?>
|
|
<p class="alert"><?= t('No user') ?></p>
|
|
<?php else: ?>
|
|
<table>
|
|
<tr>
|
|
<th><?= $paginator->order(t('Id'), 'id') ?></th>
|
|
<th><?= $paginator->order(t('Username'), 'username') ?></th>
|
|
<th><?= $paginator->order(t('Name'), 'name') ?></th>
|
|
<th><?= $paginator->order(t('Email'), 'email') ?></th>
|
|
<th><?= $paginator->order(t('Administrator'), 'is_admin') ?></th>
|
|
<th><?= $paginator->order(t('Project Administrator'), 'is_project_admin') ?></th>
|
|
<th><?= $paginator->order(t('Two factor authentication'), 'twofactor_activated') ?></th>
|
|
<th><?= $paginator->order(t('Notifications'), 'notifications_enabled') ?></th>
|
|
<th><?= $paginator->order(t('Account type'), 'is_ldap_user') ?></th>
|
|
</tr>
|
|
<?php foreach ($paginator->getCollection() as $user): ?>
|
|
<tr>
|
|
<td>
|
|
<?= $this->url->link('#'.$user['id'], 'user', 'show', array('user_id' => $user['id'])) ?>
|
|
</td>
|
|
<td>
|
|
<?= $this->url->link($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>
|
|
<?= $user['is_project_admin'] ? t('Yes') : t('No') ?>
|
|
</td>
|
|
<td>
|
|
<?= $user['twofactor_activated'] ? t('Yes') : t('No') ?>
|
|
</td>
|
|
<td>
|
|
<?php if ($user['notifications_enabled'] == 1): ?>
|
|
<?= t('Enabled') ?>
|
|
<?php else: ?>
|
|
<?= t('Disabled') ?>
|
|
<?php endif ?>
|
|
</td>
|
|
<td>
|
|
<?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|
|
|
|
<?= $paginator ?>
|
|
<?php endif ?>
|
|
</section>
|