2014-07-20 12:26:15 +02:00
|
|
|
<section id="main">
|
|
|
|
<div class="page-header">
|
|
|
|
<?php if (Helper\is_admin()): ?>
|
|
|
|
<ul>
|
2014-12-22 19:15:38 +01:00
|
|
|
<li><i class="fa fa-plus fa-fw"></i><?= Helper\a(t('New user'), 'user', 'create') ?></li>
|
2014-07-20 12:26:15 +02:00
|
|
|
</ul>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
<section>
|
|
|
|
<?php if (empty($users)): ?>
|
|
|
|
<p class="alert"><?= t('No user') ?></p>
|
|
|
|
<?php else: ?>
|
|
|
|
<table>
|
|
|
|
<tr>
|
2014-11-23 20:13:38 +01:00
|
|
|
<th><?= Helper\order(t('Id'), 'id', $pagination) ?></th>
|
|
|
|
<th><?= Helper\order(t('Username'), 'username', $pagination) ?></th>
|
|
|
|
<th><?= Helper\order(t('Name'), 'name', $pagination) ?></th>
|
|
|
|
<th><?= Helper\order(t('Email'), 'email', $pagination) ?></th>
|
|
|
|
<th><?= Helper\order(t('Administrator'), 'is_admin', $pagination) ?></th>
|
|
|
|
<th><?= Helper\order(t('Default project'), 'default_project_id', $pagination) ?></th>
|
|
|
|
<th><?= Helper\order(t('Notifications'), 'notifications_enabled', $pagination) ?></th>
|
2014-10-22 19:59:09 +02:00
|
|
|
<th><?= t('External accounts') ?></th>
|
2014-11-23 20:13:38 +01:00
|
|
|
<th><?= Helper\order(t('Account type'), 'is_ldap_user', $pagination) ?></th>
|
2014-07-20 12:26:15 +02:00
|
|
|
</tr>
|
|
|
|
<?php foreach ($users as $user): ?>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2014-11-23 20:13:38 +01:00
|
|
|
<?= Helper\a('#'.$user['id'], 'user', 'show', array('user_id' => $user['id'])) ?>
|
2014-10-22 19:59:09 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2014-11-23 20:13:38 +01:00
|
|
|
<?= Helper\a(Helper\escape($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?= Helper\escape($user['name']) ?>
|
|
|
|
</td>
|
|
|
|
<td>
|
2014-11-23 20:13:38 +01:00
|
|
|
<a href="mailto:<?= Helper\escape($user['email']) ?>"><?= Helper\escape($user['email']) ?></a>
|
2014-07-20 12:26:15 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?= $user['is_admin'] ? t('Yes') : t('No') ?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? Helper\escape($projects[$user['default_project_id']]) : t('None'); ?>
|
|
|
|
</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
|
|
|
|
|
|
|
<?= Helper\paginate($pagination) ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
<?php endif ?>
|
|
|
|
</section>
|
|
|
|
</section>
|