";
echo "Committee Management ";
echo "Awards Management ";
+ echo "Judges Management ";
echo "";
echo "Communication (Send Emails) ";
diff --git a/admin/judges.php b/admin/judges.php
new file mode 100644
index 00000000..e54b953b
--- /dev/null
+++ b/admin/judges.php
@@ -0,0 +1,37 @@
+
+/*
+ This file is part of the 'Science Fair In A Box' project
+ SFIAB Website: http://www.sfiab.ca
+
+ Copyright (C) 2005 Sci-Tech Ontario Inc
+ Copyright (C) 2005 James Grant
+
+ 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");
+ auth_required('admin');
+
+ send_header("Administration - Judges");
+ echo "<< ".i18n("Back to Administration")."\n";
+
+ echo " ";
+ echo " ";
+ echo "Judging Teams ";
+
+ send_footer();
+
+?>
diff --git a/admin/judges_teams.php b/admin/judges_teams.php
new file mode 100644
index 00000000..909fbabe
--- /dev/null
+++ b/admin/judges_teams.php
@@ -0,0 +1,251 @@
+
+/*
+ This file is part of the 'Science Fair In A Box' project
+ SFIAB Website: http://www.sfiab.ca
+
+ Copyright (C) 2005 Sci-Tech Ontario Inc
+ Copyright (C) 2005 James Grant
+
+ 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");
+ auth_required('admin');
+
+ send_header("Administration - Judging Teams");
+?>
+
+
+
+ echo "<< ".i18n("Back to Administration")."\n";
+ echo "<< ".i18n("Back to Judges")."\n";
+
+ if($_POST['action']=="add" && $_POST['team_num'] && count($_POST['judgelist'])>0)
+ {
+ //first check if this team exists.
+ $q=mysql_query("SELECT id FROM judges_teams WHERE num='".$_POST['team_num']."' AND year='".$config['FAIRYEAR']."'");
+ if(mysql_num_rows($q))
+ {
+ $r=mysql_fetch_object($q);
+ $team_id=$r->id;
+ }
+ else
+ {
+ echo notice(i18n("Creating new team #%1",array($_POST['team_num'])));
+ mysql_query("INSERT INTO judges_teams (num,year) VALUES ('".$_POST['team_num']."','".$config['FAIRYEAR']."')");
+ $team_id=mysql_insert_id();
+ }
+
+ $added=0;
+
+ foreach($_POST['judgelist'] AS $selectedjudge)
+ {
+ mysql_query("INSERT INTO judges_teams_link (judges_id,judges_teams_id,year) VALUES ('$selectedjudge','$team_id','".$config['FAIRYEAR']."')");
+ $added++;
+
+ }
+ if($added==1) $j=i18n("judge");
+ else $j=i18n("judges");
+
+ echo happy(i18n("%1 %2 added to team #%3",array($added,$j,$_POST['team_num'])));
+ }
+
+ if($_POST['action']=="del" && $_POST['team_num'] && $_POST['team_id'] && $_POST['judges_id'])
+ {
+ mysql_query("DELETE FROM judges_teams_link WHERE judges_id='".$_POST['judges_id']."' AND judges_teams_id='".$_POST['team_id']."' AND year='".$config['FAIRYEAR']."'");
+ echo happy(i18n("Removed judge from team #%1",array($_POST['team_num'])));
+
+ $q=mysql_query("SELECT * FROM judges_teams_link WHERE judges_teams_id='".$_POST['team_id']."' AND year='".$config['FAIRYEAR']."'");
+ if(mysql_num_rows($q)==0)
+ {
+ mysql_query("DELETE FROM judges_teams WHERE year='".$config['FAIRYEAR']."' AND id='".$_POST['team_id']."'");
+ echo notice(i18n("Removed empty team #%1",array($_POST['team_num'])));
+ }
+
+
+
+ }
+
+ echo "";
+
+ send_footer();
+
+
+
+?>