31 lines
897 B
PHP
31 lines
897 B
PHP
<div class="page-header">
|
|
<h2><?= t('User repartition') ?></h2>
|
|
</div>
|
|
|
|
<?php if (empty($metrics)): ?>
|
|
<p class="alert"><?= t('Not enough data to show the graph.') ?></p>
|
|
<?php else: ?>
|
|
<chart-project-user-distribution :metrics='<?= json_encode($metrics, JSON_HEX_APOS) ?>'></chart-project-user-distribution>
|
|
|
|
<table class="table-striped">
|
|
<tr>
|
|
<th><?= t('User') ?></th>
|
|
<th><?= t('Number of tasks') ?></th>
|
|
<th><?= t('Percentage') ?></th>
|
|
</tr>
|
|
<?php foreach ($metrics as $metric): ?>
|
|
<tr>
|
|
<td>
|
|
<?= $this->text->e($metric['user']) ?>
|
|
</td>
|
|
<td>
|
|
<?= $metric['nb_tasks'] ?>
|
|
</td>
|
|
<td>
|
|
<?= n($metric['percentage']) ?>%
|
|
</td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|
|
<?php endif ?>
|