diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-02-03 21:53:21 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-02-03 21:53:21 +0100 |
commit | 6ee13212111ab67f920ff7778e39acd69a9878df (patch) | |
tree | 1d1a603c362ee5823d06de6d32a0d028e0759697 /web/template/tu_details.php | |
parent | 44ac24d394d15941416b0fcc33fe471d7d19c64c (diff) | |
download | aurweb-6ee13212111ab67f920ff7778e39acd69a9878df.tar.xz |
Hide intermediate voting results
In order to make votes as neutral as possible, current yes/no votes
should not be shown until the voting period is over.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/tu_details.php')
-rw-r--r-- | web/template/tu_details.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php index 5fe66c0..fca1815 100644 --- a/web/template/tu_details.php +++ b/web/template/tu_details.php @@ -62,17 +62,21 @@ if ($yes > $active_tus / 2) { <table> <tr> + <?php if (!$isrunning): ?> <th><?= __("Yes") ?></th> <th><?= __("No") ?></th> <th><?= __("Abstain") ?></th> + <?php endif; ?> <th><?= __("Total") ?></th> <th><?= __('Voted') ?></th> <th><?= __('Participation') ?></th> </tr> <tr> + <?php if (!$isrunning): ?> <td><?= $yes ?></td> <td><?= $no ?></td> <td><?= $abstain ?></td> + <?php endif; ?> <td><?= $total ?></td> <td> <?php if ($hasvoted == 0): ?> |