diff options
author | Loui Chang <louipc.ist@gmail.com> | 2009-02-13 21:31:05 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2009-02-13 21:31:05 +0100 |
commit | e83e593ac41a6e7dcee20fe7962269889c5fd5e1 (patch) | |
tree | 197ef56ff8e6134ca389f84498b4d687b151aadb /web/template/tu_details.php | |
parent | df75621d232405c0ac3c6211f4c72ffd851bee67 (diff) | |
download | aur-e83e593ac41a6e7dcee20fe7962269889c5fd5e1.tar.gz aur-e83e593ac41a6e7dcee20fe7962269889c5fd5e1.tar.xz |
Change layout of tu_details.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/tu_details.php')
-rw-r--r-- | web/template/tu_details.php | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php index df392b48..9414d1f0 100644 --- a/web/template/tu_details.php +++ b/web/template/tu_details.php @@ -1,11 +1,16 @@ <div class="pgbox"> <div class="pgboxtitle"><span class="f3"><?php print __("Proposal Details") ?></span></div> <div class="pgboxbody"> -<?php if ($isrunning == 1) { ?> -<div style='text-align: center; font-weight: bold; color: red'><?php print __("This vote is still running.") ?></div> -<br /> -<?php } -echo __('User') ?>: <b> +<?php +if ($isrunning == 1) { ?> +<p style='font-weight: bold; color: red'> +<?php print __("This vote is still running.") ?> +</p> +<?php +} ?> + +<p> +<?php echo __('User') ?>: <b> <?php if (!empty($row['User'])) { ?> <a href='packages.php?K=<?php print $row['User'] ?>&SeB=m'><?php print $row['User'] ?></a> <?php } else { ?> @@ -13,9 +18,12 @@ N/A <?php } ?> </b><br /> <?php print __("Submitted: %s by %s", "<b>" . gmdate("r", $row['Submitted']) . "</b>", "<b>" . username_from_id($row['SubmitterID']) . "</b>") ?><br /> -<?php print __('End') ?>: <b><?php print gmdate("r", $row['End']) ?></b><br /><br /> -<?php print str_replace("\n", "<br />\n", htmlentities($row['Agenda'])) ?><br /><br /> -<center> +<?php print __('End') ?>: <b><?php print gmdate("r", $row['End']) ?></b></p> + +<p> +<?php print str_replace("\n", "<br />\n", htmlentities($row['Agenda'])) ?> +</p> + <table cellspacing='3' class='boxSoft' style='width: 50%'> </tr> <tr> @@ -59,17 +67,15 @@ if (!$isrunning) { ?> } ?> <div class='pgbox'> -<div class='pgboxtitle'><span class='f3'><?php print __("Vote Actions") ?></span></div> <div class='pgboxbody'> <?php if ($canvote == 1) { ?> -<center><form action='tu.php?id=<?php print $row['ID'] ?>' method='post'> +<form action='tu.php?id=<?php print $row['ID'] ?>' method='post'> <input type='submit' class='button' name='voteYes' value='<?php print __("Yes") ?>'> <input type='submit' class='button' name='voteNo' value='<?php print __("No") ?>'> <input type='submit' class='button' name='voteAbstain' value='<?php print __("Abstain") ?>'> <input type='hidden' name='doVote' value='1'> -</form></center> +</form> <?php } else { ?> -<center><?php print $errorvote ?></center> +<?php print $errorvote ?> <?php } ?> </div></div> -<br /><center><a href='tu.php'><?php print __("Back") ?></a></center> |