summaryrefslogtreecommitdiff
path: root/app/Template/analytic/user_distribution.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-09-03 20:45:30 -0400
committerFrederic Guillot <fred@kanboard.net>2016-09-03 20:45:30 -0400
commitef8ddb59c94e24383531e52371b70b595dff8e24 (patch)
tree6fb3884ab6345a5c06a146cb9d3a40cc37c8119a /app/Template/analytic/user_distribution.php
parent8c07a0d03e64227c552f3b4530d3a1e1ba53402b (diff)
Convert user distribution chart to Vue.js component
Diffstat (limited to 'app/Template/analytic/user_distribution.php')
-rw-r--r--app/Template/analytic/user_distribution.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/Template/analytic/user_distribution.php b/app/Template/analytic/user_distribution.php
new file mode 100644
index 00000000..c3cf4961
--- /dev/null
+++ b/app/Template/analytic/user_distribution.php
@@ -0,0 +1,30 @@
+<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 ?>