<?
/* 
   This file is part of the 'Science Fair In A Box' project
   SFIAB Website: http://www.sfiab.ca

   Copyright (C) 2005-2006 Sci-Tech Ontario Inc <info@scitechontario.org>
   Copyright (C) 2005-2006 James Grant <james@lightbox.org>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License as published by the Free Software Foundation, version 2.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.
*/
?>
<?
 require("../common.inc.php");
 require_once("../user.inc.php");
 require_once("judges.inc.php");
 user_auth_required('committee', 'admin');
 send_header("Judging Score Entry - Update",
 		array('Committee Main' => 'committee_main.php',
			'Administration' => 'admin/index.php',
			'Judging Score Entry' => 'admin/judging_score_entry.php')
				);

 $year=$config['FAIRYEAR'];
 $project_id = NULL;
 if($_GET['projectid']) {
	 $project_id = $_GET['projectid'];
 } else if($_POST['projectid']) {
	 $project_id = $_POST['projectid'];
	 $curr_team = $_POST['score_count'];
	 while($curr_team > 0) {
		 if($_POST["team_" . $curr_team . "_score"] != "") {
		 mysql_query("UPDATE judges_teams_timeslots_projects_link 
				 					SET score=" . mysql_real_escape_string($_POST["team_" . $curr_team . "_score"]) . 
			          " WHERE judges_teams_id = " . mysql_real_escape_string($_POST["team_" . $curr_team . "_id"]) . 
			          " and projects_id =$project_id and year=$year");
		 echo mysql_error();
		 }
		 $curr_team--;
	 }
 }

  ?>
<?
if($project_id) {
$q=mysql_query("SELECT * FROM projectcategories WHERE year='$year' ORDER BY id");
while($r=mysql_fetch_object($q))
	$cats[$r->id]=$r->category;

$q=mysql_query("SELECT * FROM projectdivisions WHERE year='$year' ORDER BY id");


	$q=mysql_query("SELECT judges_teams_timeslots_projects_link.judges_teams_id, 
												 score, 
												 judges_teams.num
			            FROM judges_teams_timeslots_projects_link, 
									     judges_teams
			            WHERE judges_teams_timeslots_projects_link.judges_teams_id = judges_teams.id 
									     AND projects_id = ".mysql_real_escape_string($project_id)." ORDER BY judges_teams_id"
								);
	echo mysql_error();

	echo "<form action=\"judging_score_edit.php\" method=\"post\">";
	echo "<input type=\"hidden\" name=\"score_count\" value=\"" . mysql_num_rows($q) . "\"/>";
	echo "<input type=\"hidden\" name=\"projectid\" value=\"$project_id\"/>";
	echo "<table class=\"tableview\">";
	echo "<tr>";
	echo "<th>".i18n("Team Number")."</th>";
	echo "<th>".i18n("Judges")."</th>";
	echo "<th>".i18n("Score")."</th>";
	echo "<th>".i18n("New Score")."</th>";
	echo "</tr>";

	$i = 1;
	while($r=mysql_fetch_object($q)) {
		$s = mysql_query("SELECT CONCAT(judges.firstname, ' ', judges.lastname) as name
										  FROM judges, 
											     judges_teams_link
										WHERE judges_teams_link.judges_id = judges.id
										      AND judges_teams_link.judges_teams_id = " . $r->judges_teams_id
										);
		echo "<tr>\n";
		echo "<td style=\"vertical-align: middle\">\n";
		echo $r->num;
		echo "<input type=\"hidden\" name=\"team_" . $i. "_id\" value=\"$r->judges_teams_id\"/>\n";
		echo "</td>\n";
		echo "<td style=\"vertical-align: middle\">";
		echo mysql_fetch_object($s)->name;
		echo "</td>\n";
		echo "<td style=\"vertical-align: middle; text-align: center\">\n";
		if($r->score) {
			echo $r->score;
		} else {
			echo "None";
		}
		echo "\n</td>\n";
		echo "<td style=\"vertical-align: middle; text-align: center\">\n";
		echo "<input type=\"text\" size=\"3\" maxlength=\"3\" name=\"team_" . $i . "_score\" value=\"$r->score\"/>\n";
		echo "</td>\n";
		echo "</tr>\n";
		$i++;
	}
	echo "</table>\n";
	echo "<input type=\"submit\" />\n";
	echo "</form>\n";
} else {
	echo i18n("Invalid Project ID.");
}