diff options
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/tu_details.php | 32 | ||||
-rw-r--r-- | web/template/tu_list.php | 2 |
2 files changed, 20 insertions, 14 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php index df392b4..9414d1f 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> diff --git a/web/template/tu_list.php b/web/template/tu_list.php index 83c9a48..697918d 100644 --- a/web/template/tu_list.php +++ b/web/template/tu_list.php @@ -17,7 +17,7 @@ <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'><?php print __("User") ?></span></th> <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'><?php print __("Yes") ?></span></th> <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'><?php print __("No") ?></span></th> - <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'><?php print __("Voted?") ?></span></th> + <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'><?php print __('Voted') ?></span></th> </tr> <?php if (mysql_num_rows($result) == 0) { ?> <tr><td align='center' colspan='0'><?php print __("No results found.") ?></td></tr> |