diff options
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/tu_last_votes_list.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/web/template/tu_last_votes_list.php b/web/template/tu_last_votes_list.php new file mode 100644 index 0000000..090ce8d --- /dev/null +++ b/web/template/tu_last_votes_list.php @@ -0,0 +1,40 @@ +<div class="box"> + <h2><?= __("Last Votes by TU") ?></h2> + <table class="results"> + <thead> + <tr> + <th><?= __("User") ?></th> + <th><?= __("Last vote") ?></th> + </tr> + </thead> + + <tbody> + <?php if (empty($result)): ?> + <tr><td align="center" colspan="0"><?= __("No results found.") ?></td></tr> + <?php else: while (list($indx, $row) = each($result)): + if ($indx % 2): + $c = "even"; + else: + $c = "odd"; + endif; + $username = username_from_id($row["UserID"]); + ?> + <tr class="<?= $c ?>"> + <td> + <?php if (!$USE_VIRTUAL_URLS): ?> + <a href="<?= get_uri('/account/'); ?>?Action=AccountInfo&ID=<?= htmlspecialchars($row['UserID'], ENT_QUOTES) ?>" title="<?= __('View account information for')?> <?= htmlspecialchars($username) ?>"><?= htmlspecialchars($username) ?></a></td> + <?php else: ?> + <a href="<?= get_uri('/account/') . htmlspecialchars($username, ENT_QUOTES) ?>" title="<?= __('View account information for %s', htmlspecialchars($username)) ?>"><?= htmlspecialchars($username) ?></a> + <?php endif; ?> + </td> + <td> + <a href="<?= get_uri('/tu/'); ?>?id=<?= $row['LastVote'] ?>"><?= intval($row["LastVote"]) ?></a> + </td> + </tr> + <?php + endwhile; + endif; + ?> + </tbody> + </table> +</div> |