46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<h2><?= t('Users') ?><span id="page-counter"> (<?= $nb_users ?>)</span></h2>
|
|
<ul>
|
|
<li><a href="?controller=user&action=create"><?= t('New user') ?></a></li>
|
|
</ul>
|
|
</div>
|
|
<section>
|
|
<?php if (empty($users)): ?>
|
|
<p class="alert"><?= t('No user') ?></p>
|
|
<?php else: ?>
|
|
<table>
|
|
<tr>
|
|
<th><?= t('Username') ?></th>
|
|
<th><?= t('Administrator') ?></th>
|
|
<th><?= t('Default Project') ?></th>
|
|
<?php if ($_SESSION['user']['is_admin'] == 1): ?>
|
|
<th><?= t('Actions') ?></th>
|
|
<?php endif ?>
|
|
</tr>
|
|
<?php foreach ($users as $user): ?>
|
|
<tr>
|
|
<td>
|
|
<?= Helper\escape($user['username']) ?>
|
|
</td>
|
|
<td>
|
|
<?= $user['is_admin'] ? t('Yes') : t('No') ?>
|
|
</td>
|
|
<td>
|
|
<?= $projects[$user['default_project_id']] ?>
|
|
</td>
|
|
<?php if ($_SESSION['user']['is_admin'] == 1): ?>
|
|
<td>
|
|
<a href="?controller=user&action=edit&user_id=<?= $user['id'] ?>"><?= t('edit') ?></a>
|
|
<?php if (count($users) > 1): ?>
|
|
<?= t('or') ?>
|
|
<a href="?controller=user&action=confirm&user_id=<?= $user['id'] ?>"><?= t('remove') ?></a>
|
|
<?php endif ?>
|
|
</td>
|
|
<?php endif ?>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|
|
<?php endif ?>
|
|
</section>
|
|
</section>
|