diff options
-rw-r--r-- | web/html/tu.php | 13 | ||||
-rw-r--r-- | web/template/tu_details.php | 15 |
2 files changed, 27 insertions, 1 deletions
diff --git a/web/html/tu.php b/web/html/tu.php index 67addfb..b400777 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -38,6 +38,19 @@ if ($atype == "Trusted User" OR $atype == "Developer") { $qvoted.= "UserID = " . uid_from_sid($_COOKIE["AURSID"]); $hasvoted = mysql_num_rows(db_query($qvoted, $dbh)); + # List voters of a proposal. + $qwhoVoted = "SELECT tv.UserID,U.Username + FROM TU_Votes tv, Users U + WHERE tv.VoteID = {$row['ID']} + AND tv.UserID = U.ID + ORDER BY Username"; + $result = db_query($qwhoVoted,$dbh); + if (mysql_num_rows($result) > 0) { + while ($who = mysql_fetch_assoc($result)) { + $whovoted.= '<a href="account.php?Action=AccountInfo&ID='.$who['UserID'].'">'.$who['Username'].'</a> '; + } + } + $canvote = 1; $errorvote = ""; if ($isrunning == 0) { diff --git a/web/template/tu_details.php b/web/template/tu_details.php index 7fc9f09..df392b4 100644 --- a/web/template/tu_details.php +++ b/web/template/tu_details.php @@ -44,7 +44,20 @@ N/A </table> </table> </div></div> -<br /> + +<?php +if (!$isrunning) { ?> +<div class="pgbox"> + <div class="pgboxtitle"> + <span class="f3"><?php echo __('Voters'); ?></span> + </div> + <div class="pgboxbody"> + <?php echo $whovoted; ?> + </div> +</div> +<?php +} ?> + <div class='pgbox'> <div class='pgboxtitle'><span class='f3'><?php print __("Vote Actions") ?></span></div> <div class='pgboxbody'> |