1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/user/index.php

77 lines
3.3 KiB
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<section id="main">
<div class="page-header">
2015-01-16 14:23:05 +01:00
<?php if ($this->userSession->isAdmin()): ?>
2014-07-20 12:26:15 +02:00
<ul>
2015-01-16 14:23:05 +01:00
<li><i class="fa fa-plus fa-fw"></i><?= $this->a(t('New user'), 'user', 'create') ?></li>
2014-07-20 12:26:15 +02:00
</ul>
<?php endif ?>
</div>
<section>
2015-02-25 17:29:06 +01:00
<?php if ($paginator->isEmpty()): ?>
2014-07-20 12:26:15 +02:00
<p class="alert"><?= t('No user') ?></p>
<?php else: ?>
<table>
<tr>
2015-02-25 17:29:06 +01:00
<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>
2015-04-21 17:56:16 +02:00
<th><?= $paginator->order(t('Two factor authentication'), 'twofactor_activated') ?></th>
2015-02-25 17:29:06 +01:00
<th><?= $paginator->order(t('Default project'), 'default_project_id') ?></th>
<th><?= $paginator->order(t('Notifications'), 'notifications_enabled') ?></th>
2014-10-22 19:59:09 +02:00
<th><?= t('External accounts') ?></th>
2015-02-25 17:29:06 +01:00
<th><?= $paginator->order(t('Account type'), 'is_ldap_user') ?></th>
2014-07-20 12:26:15 +02:00
</tr>
2015-02-25 17:29:06 +01:00
<?php foreach ($paginator->getCollection() as $user): ?>
2014-07-20 12:26:15 +02:00
<tr>
<td>
2015-01-16 14:23:05 +01:00
<?= $this->a('#'.$user['id'], 'user', 'show', array('user_id' => $user['id'])) ?>
2014-10-22 19:59:09 +02:00
</td>
<td>
2015-01-16 14:23:05 +01:00
<?= $this->a($this->e($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?>
2014-07-20 12:26:15 +02:00
</td>
<td>
2015-01-16 14:23:05 +01:00
<?= $this->e($user['name']) ?>
2014-07-20 12:26:15 +02:00
</td>
<td>
2015-01-16 14:23:05 +01:00
<a href="mailto:<?= $this->e($user['email']) ?>"><?= $this->e($user['email']) ?></a>
2014-07-20 12:26:15 +02:00
</td>
<td>
<?= $user['is_admin'] ? t('Yes') : t('No') ?>
</td>
2015-04-21 17:56:16 +02:00
<td>
<?= $user['twofactor_activated'] ? t('Yes') : t('No') ?>
</td>
2014-07-20 12:26:15 +02:00
<td>
2015-01-16 14:23:05 +01:00
<?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? $this->e($projects[$user['default_project_id']]) : t('None'); ?>
2014-07-20 12:26:15 +02:00
</td>
<td>
2014-10-22 19:59:09 +02:00
<?php if ($user['notifications_enabled'] == 1): ?>
<?= t('Enabled') ?>
<?php else: ?>
<?= t('Disabled') ?>
2014-07-20 12:26:15 +02:00
<?php endif ?>
2014-10-22 19:59:09 +02:00
</td>
<td>
<ul class="no-bullet">
<?php if ($user['google_id']): ?>
2014-12-22 19:15:38 +01:00
<li><i class="fa fa-google fa-fw"></i><?= t('Google account linked') ?></li>
2014-07-20 12:26:15 +02:00
<?php endif ?>
2014-10-22 19:59:09 +02:00
<?php if ($user['github_id']): ?>
2014-12-22 19:15:38 +01:00
<li><i class="fa fa-github fa-fw"></i><?= t('Github account linked') ?></li>
2014-10-22 19:59:09 +02:00
<?php endif ?>
</ul>
</td>
<td>
<?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?>
2014-07-20 12:26:15 +02:00
</td>
</tr>
<?php endforeach ?>
</table>
2014-11-23 20:13:38 +01:00
2015-02-25 17:29:06 +01:00
<?= $paginator ?>
2014-07-20 12:26:15 +02:00
<?php endif ?>
</section>
</section>