diff options
author | Loui Chang <louipc.ist@gmail.com> | 2009-11-23 14:14:23 -0500 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2009-11-23 14:14:23 -0500 |
commit | cdd2e5dbd4f50151cbf0b774acb9decc3de3314a (patch) | |
tree | 233ac9da2fe277b54d4eb44ec3bbef08a11868a6 /web/html | |
parent | f6387253b47fc994d5c03c9b8e4a47a0bce5c6b9 (diff) | |
download | aurweb-cdd2e5dbd4f50151cbf0b774acb9decc3de3314a.tar.xz |
tu: Bring Trusted User interface in line with the rest of the site.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/tu.php | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/web/html/tu.php b/web/html/tu.php index d78fe95..1864988 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -129,10 +129,6 @@ if ($atype == "Trusted User" OR $atype == "Developer") { include("tu_list.php"); ?> -<center> - <a href='addvote.php'><?php print __("Add") ?></a> -</center><br /> - <?php $q = "SELECT * FROM TU_VoteInfo ORDER BY Submitted " . $order . $lim; $result = db_query($q, $dbh); @@ -143,22 +139,18 @@ if ($atype == "Trusted User" OR $atype == "Developer") { $qnext = "SELECT ID FROM TU_VoteInfo"; $nextresult = db_query($qnext, $dbh); ?> -<table style='width: 90%'> +<div class="pgbox"> +<p><a href='addvote.php'><?php print __("Add Proposal") ?></a></p> + <?php if (mysql_num_rows($result)) { $by = htmlentities($by, ENT_QUOTES); ?> - <tr> - <td align='left'> <?php if ($off != 0) { $back = (($off - $limit) <= 0) ? 0 : $off - $limit; ?> <a href='tu.php?off=<?php print $back ?>&by=<?php print $by ?>'><?php print __("Back") ?></a> <?php } ?> - </td> - <td align='right'> <?php if (($off + $limit) < mysql_num_rows($nextresult)) { $forw = $off + $limit; ?> <a href='tu.php?off=<?php print $forw ?>&by=<?php print $by ?>'><?php print __("Next") ?></a> <?php } ?> - </td> - </tr> <?php } ?> -</table> +</div> <?php } } |