2005-01-24 18:00:03 +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.
|
|
|
|
*/
|
|
|
|
?>
|
2005-01-21 16:13:08 +00:00
|
|
|
<?
|
|
|
|
require("../common.inc.php");
|
2005-02-16 22:50:43 +00:00
|
|
|
auth_required('admin');
|
2005-01-21 16:13:08 +00:00
|
|
|
send_header("Administration - Reports");
|
|
|
|
echo "<a href=\"index.php\"><< ".i18n("Back to Administration")."</a><br />";
|
|
|
|
echo "<br />";
|
2005-02-23 14:29:28 +00:00
|
|
|
echo "<table><tr><td>";
|
2005-01-21 16:13:08 +00:00
|
|
|
echo i18n("Day of Fair Registration/Checkin Forms").": ";
|
2005-02-23 14:29:28 +00:00
|
|
|
echo "</td>";
|
2005-01-21 16:13:08 +00:00
|
|
|
//lets split this up by age category,
|
|
|
|
$catq=mysql_query("SELECT * FROM projectcategories WHERE year='".$config['FAIRYEAR']."' ORDER BY id");
|
|
|
|
while($catr=mysql_fetch_object($catq))
|
|
|
|
{
|
2005-02-23 14:29:28 +00:00
|
|
|
echo "<td>";
|
|
|
|
echo "<a href=\"reports_checkin.php?type=pdf&cat=$catr->id\">$catr->category (PDF)</a> ";
|
|
|
|
echo "<br>";
|
|
|
|
echo "<a href=\"reports_checkin.php?type=csv&cat=$catr->id\">$catr->category (CSV)</a> ";
|
|
|
|
echo "</td>";
|
2005-01-21 16:13:08 +00:00
|
|
|
}
|
2005-02-23 14:29:28 +00:00
|
|
|
echo "</tr>";
|
|
|
|
echo "</table>";
|
2005-01-21 16:13:08 +00:00
|
|
|
|
2005-12-08 16:00:18 +00:00
|
|
|
echo "<br />";
|
|
|
|
echo i18n("Student Emergency Contact Names/Numbers").": ";
|
|
|
|
echo "<a href=\"reports_emergencycontact.php?type=pdf\">PDF</a> ";
|
|
|
|
echo "<a href=\"reports_emergencycontact.php?type=csv\">CSV</a> ";
|
2005-04-22 14:20:29 +00:00
|
|
|
|
2005-04-22 17:37:19 +00:00
|
|
|
echo "<br />";
|
2005-04-22 14:20:29 +00:00
|
|
|
echo i18n("Project Table Labels").": ";
|
|
|
|
echo "<a href=\"reports_projects_tablelabels.php?type=pdf\">PDF</a> ";
|
2005-04-22 17:37:19 +00:00
|
|
|
echo "<br />";
|
2005-12-08 18:00:30 +00:00
|
|
|
echo i18n("Project Summary Details").": ";
|
|
|
|
echo "<a href=\"reports_projects_details.php?type=pdf\">PDF</a> ";
|
|
|
|
echo "<br />";
|
2005-04-22 19:14:37 +00:00
|
|
|
echo i18n("Nametags").": ";
|
|
|
|
echo "<a href=\"reports_nametags_students.php\">Students PDF</a> ";
|
|
|
|
echo "<a href=\"reports_nametags_judges.php\">Judges PDF</a> ";
|
2005-04-22 19:51:47 +00:00
|
|
|
echo "<a href=\"reports_nametags_committee.php\">Committee PDF</a> ";
|
2005-04-22 14:20:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
echo "<br />";
|
|
|
|
echo "<br />";
|
2005-02-23 14:55:01 +00:00
|
|
|
echo i18n("Judges List").": ";
|
|
|
|
echo "<a href=\"reports_judges.php?type=csv\">Judge List (CSV)</a> ";
|
2005-01-21 16:13:08 +00:00
|
|
|
|
2005-04-15 16:12:00 +00:00
|
|
|
echo "<br />";
|
|
|
|
echo i18n("Judging Teams").": ";
|
|
|
|
echo "<a href=\"reports_judges_teams.php?type=csv\">List (CSV)</a> ";
|
|
|
|
echo "<a href=\"reports_judges_teams.php?type=pdf\">List (PDF)</a> ";
|
|
|
|
echo "<a href=\"reports_judges_teams_view.php?type=csv\">Team View (CSV)</a> ";
|
|
|
|
echo "<a href=\"reports_judges_teams_view.php?type=pdf\">Team View (PDF)</a> ";
|
|
|
|
|
2005-04-21 20:29:08 +00:00
|
|
|
echo "<br />";
|
2005-04-21 22:12:35 +00:00
|
|
|
echo i18n("Judging Teams Project Assignments").": ";
|
2005-04-21 20:29:08 +00:00
|
|
|
echo "<a href=\"reports_judges_teams_projects.php?type=csv\">CSV</a> ";
|
|
|
|
echo "<a href=\"reports_judges_teams_projects.php?type=pdf\">PDF</a> ";
|
|
|
|
|
2005-04-21 22:12:35 +00:00
|
|
|
echo "<br />";
|
|
|
|
echo i18n("Projects Judging Team Assignments").": ";
|
|
|
|
echo "<a href=\"reports_projects_judges_teams.php?type=csv\">CSV</a> ";
|
|
|
|
echo "<a href=\"reports_projects_judges_teams.php?type=pdf\">PDF</a> ";
|
|
|
|
|
2005-05-04 21:23:00 +00:00
|
|
|
echo "<br />";
|
|
|
|
echo "<br />";
|
|
|
|
echo i18n("Award Ceremony Script").": ";
|
|
|
|
echo "<a href=\"reports_acscript.php?type=pdf\">PDF</a> ";
|
|
|
|
echo "<a href=\"reports_acscript.php?type=csv\">CSV</a> ";
|
2005-01-21 16:13:08 +00:00
|
|
|
send_footer();
|
|
|
|
?>
|