summaryrefslogtreecommitdiffstats
path: root/web/template/tu_last_votes_list.php
blob: f7b07bc033ad268bc5b284c67821367159910d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<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>
					<a href="<?= get_uri('/account/') . html_format_username($username) ?>" title="<?= __('View account information for %s', html_format_username($username)) ?>"><?= html_format_username($username) ?></a>
				</td>
				<td>
					<a href="<?= get_uri('/tu/'); ?>?id=<?= $row['LastVote'] ?>"><?= intval($row["LastVote"]) ?></a>
				</td>
			</tr>
			<?php
			endwhile;
			endif;
			?>
		</tbody>
	</table>
</div>