From 57017cccc017c90808372dec001a36e3e27b19c4 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 1 Apr 2009 23:40:08 +0000 Subject: [PATCH] Add time availability to the judge info popup --- admin/judges_info.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/admin/judges_info.php b/admin/judges_info.php index aaa2b95a..9a77bea6 100644 --- a/admin/judges_info.php +++ b/admin/judges_info.php @@ -92,6 +92,16 @@ echo ""; echo ""; echo "\n"; +echo " "; +echo ""; echo "
".i18n("Time Availability").":"; +$q = mysql_query("SELECT * FROM judges_availability WHERE users_id=\"{$judgeinfo['id']}\" ORDER BY `start`"); +$sel = array(); +while($r=mysql_fetch_object($q)) { + $st = substr($r->start, 0, 5); + $end = substr($r->end, 0, 5); + echo "$st - $end
"; +} +echo "
".i18n("Age category preference").":"; $q=mysql_query("SELECT * FROM projectcategories @@ -130,7 +140,7 @@ echo "

Areas of Expertise

"; echo ""; //grab the list of divisions, because the last fields of the table will be the sub-divisions -$q=mysql_query("SELECT * FROM projectdivisions WHERE year='".$config['FAIRYEAR']."' ORDER BY id"); +$q=mysql_query("SELECT * FROM projectdivisions WHERE year='{$config['FAIRYEAR']}' ORDER BY id"); $divs=array(); while($r=mysql_fetch_object($q)) {