Fix some formatting on the judge_other pagewq

This commit is contained in:
dave 2009-12-14 20:25:38 +00:00
parent c3ed887dca
commit 2e0fb0e26e

View File

@ -111,7 +111,7 @@ echo "<div id=\"other_info_status\"></div>\n";
<input type="hidden" name="users_id" value="<?=$u['id']?>">
<table class="editor">
<tr>
<td style="width:50%"><?=i18n("I can judge in the following languages")." ".REQUIREDFIELD?>: </td>
<td style="width:35%"><?=i18n("I can judge in the following languages")." ".REQUIREDFIELD?>: </td>
<td>
<?
$q=mysql_query("SELECT * FROM languages WHERE active='Y' ORDER BY langname");
@ -129,14 +129,15 @@ while($r=mysql_fetch_object($q))
if($config['judges_specialaward_only_enable'] == 'yes') {
?>
<tr><td colspan="2"><hr /></td></tr>
<tr><td><?=i18n("I am a judge for a specific special award")?><br />
<font size=-1>(<?=i18n("Check this box if you are supposed to judge a specific special award, and please select that award on the Special Award Preferences page.")?>)
</font></td>
<td>
<tr><td><?=i18n("I am a judge for a specific special award")?>:</td>
<td><table><tr><td>
<?
$ch = ($u['special_award_only'] == 'yes') ? 'checked="checked"' : '';
echo "<input $ch type=\"checkbox\" name=\"special_award_only\" value=\"yes\" />";
echo "</td><td>";
echo i18n("Check this box if you are supposed to judge a specific special award, and please select that award on the Special Award Preferences page.");
?>
</td></tr></table>
</td></tr>
<?
}