summaryrefslogtreecommitdiffstats
path: root/web/template/tu_details.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/template/tu_details.php')
-rw-r--r--web/template/tu_details.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php
index b53797f..be816ce 100644
--- a/web/template/tu_details.php
+++ b/web/template/tu_details.php
@@ -54,7 +54,11 @@
<?php if (!$isrunning): ?>
<div class="box">
<h2><?= __("Voters"); ?></h2>
- <?= $whovoted; ?>
+ <ul>
+ <?php foreach($whovoted as $voter): ?>
+ <li><a href="<?= get_user_uri($voter) ?>"><?= htmlspecialchars($voter) ?></a></li>
+ <?php endforeach; ?>
+ </ul>
</div>
<?php endif; ?>