2005-03-09 23:20:44 +00:00
|
|
|
<?
|
|
|
|
/*
|
|
|
|
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 <info@scitechontario.org>
|
|
|
|
Copyright (C) 2005 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");
|
2007-11-18 23:50:23 +00:00
|
|
|
user_auth_required('committee', 'admin');
|
2005-03-09 23:20:44 +00:00
|
|
|
|
2007-11-18 23:50:23 +00:00
|
|
|
send_header("Judges",
|
|
|
|
array('Committee Main' => 'committee_main.php',
|
|
|
|
'Administration' => 'admin/index.php')
|
|
|
|
);
|
2005-03-09 23:20:44 +00:00
|
|
|
echo "<br />";
|
2005-11-25 21:15:29 +00:00
|
|
|
if($config['judge_registration_type']=="invite")
|
|
|
|
{
|
|
|
|
echo "<a href=\"judges_invite.php\">".i18n("Invite Judges")."</a><br />";
|
|
|
|
}
|
2006-10-18 07:50:23 +00:00
|
|
|
echo "<a href=\"judges_judges.php\">".i18n("List Judges")."</a><br />";
|
|
|
|
echo "<a href=\"judges_manager.php\">".i18n("Manage Judges")."</a> ".i18n("- Add, Delete, Edit, and List judges")."<br />";
|
2005-04-15 20:33:13 +00:00
|
|
|
echo "<a href=\"judges_teams.php\">".i18n("Manage Judging Teams")."</a><br />";
|
2005-05-06 16:13:37 +00:00
|
|
|
echo "<a href=\"judges_teams_members.php\">".i18n("Manage Judging Team Members")."</a><br />";
|
2005-04-15 20:33:13 +00:00
|
|
|
echo "<a href=\"judges_timeslots.php\">".i18n("Manage Judging Timeslots")."</a><br />";
|
2005-04-18 17:56:46 +00:00
|
|
|
echo "<a href=\"judges_teams_timeslots.php\">".i18n("Assign Timeslots to Judging Teams")."</a><br />";
|
2005-04-15 20:33:13 +00:00
|
|
|
echo "<a href=\"judges_teams_projects.php\">".i18n("Assign Projects to Teams")."</a><br />";
|
2006-01-03 02:08:23 +00:00
|
|
|
echo "<hr />";
|
|
|
|
|
2006-07-31 18:17:37 +00:00
|
|
|
echo "<a href=\"judges_jdiv.php\">".i18n("Manage Divisional Judging Groupings")."</a><br />";
|
2006-01-03 02:08:23 +00:00
|
|
|
echo "<a href=\"judges_schedulerconfig.php\">".i18n("Judging automatic scheduler")."</a><br />";
|
2005-03-09 23:20:44 +00:00
|
|
|
|
|
|
|
send_footer();
|
|
|
|
|
|
|
|
?>
|