forked from science-ation/science-ation
a8d31a3603
Add School Mailing Address Labels for Avery #05163 (4"x2" or 10.2 x 5.1 cm)
111 lines
4.5 KiB
PHP
111 lines
4.5 KiB
PHP
<?
|
|
/*
|
|
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");
|
|
auth_required('admin');
|
|
send_header("Administration - Reports");
|
|
echo "<a href=\"index.php\"><< ".i18n("Back to Administration")."</a><br />";
|
|
echo "<br />";
|
|
echo "<table><tr><td>";
|
|
echo i18n("Day of Fair Registration/Checkin Forms").": ";
|
|
echo "</td>";
|
|
//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))
|
|
{
|
|
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>";
|
|
}
|
|
echo "</tr>";
|
|
echo "</table>";
|
|
|
|
echo "<br />";
|
|
echo i18n("School Mailing Address Labels").": ";
|
|
echo "<a href=\"reports_school_mailing_labels.php?type=pdf\">PDF (Avery #05163 4\"x2\")</a> ";
|
|
echo "<a href=\"reports_school_mailing_labels.php?type=csv\">CSV</a> ";
|
|
|
|
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> ";
|
|
|
|
echo "<br />";
|
|
echo i18n("Students/Projects From Each School").": ";
|
|
echo "<a href=\"reports_schoolprojects.php?type=pdf\">PDF</a> ";
|
|
echo "<a href=\"reports_schoolprojects.php?type=csv\">CSV</a> ";
|
|
|
|
echo "<br />";
|
|
echo i18n("Project Logistical Requirements (tables, electricity)").": ";
|
|
echo "<a href=\"reports_projects_requirements.php?type=pdf\">PDF</a> ";
|
|
echo "<a href=\"reports_projects_requirements.php?type=csv\">CSV</a> ";
|
|
echo "<br />";
|
|
|
|
echo i18n("Project Table Labels").": ";
|
|
echo "<a href=\"reports_projects_tablelabels.php?type=pdf\">PDF</a> ";
|
|
echo "<br />";
|
|
echo i18n("Project Summary Details").": ";
|
|
echo "<a href=\"reports_projects_details.php?type=pdf\">PDF</a> ";
|
|
echo "<br />";
|
|
echo i18n("Nametags").": ";
|
|
echo "<a href=\"reports_nametags_students.php?type=pdf\">Students PDF</a> ";
|
|
echo "<a href=\"reports_nametags_students.php?type=csv\">Students CSV</a> ";
|
|
echo "<a href=\"reports_nametags_judges.php?type=pdf\">Judges PDF</a> ";
|
|
echo "<a href=\"reports_nametags_judges.php?type=csv\">Judges CSV</a> ";
|
|
echo "<a href=\"reports_nametags_committee.phptype=pdf\">Committee PDF</a> ";
|
|
echo "<a href=\"reports_nametags_committee.php?type=csv\">Committee CSV</a> ";
|
|
|
|
|
|
echo "<br />";
|
|
echo "<br />";
|
|
echo i18n("Judges List").": ";
|
|
echo "<a href=\"reports_judges.php?type=csv\">Judge List (CSV)</a> ";
|
|
|
|
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> ";
|
|
|
|
echo "<br />";
|
|
echo i18n("Judging Teams Project Assignments").": ";
|
|
echo "<a href=\"reports_judges_teams_projects.php?type=csv\">CSV</a> ";
|
|
echo "<a href=\"reports_judges_teams_projects.php?type=pdf\">PDF</a> ";
|
|
|
|
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> ";
|
|
|
|
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> ";
|
|
send_footer();
|
|
?>
|