science-ation/schoolstudents.php
jacob 41efbd89b0 Renamed manage_teams.php to schoolteams.php for consistency
Started adding a page for the school to modify students under SOIAB
2010-06-15 18:14:01 +00:00

18 lines
448 B
PHP

<?php
require_once('common.inc.php');
require_once('user.inc.php');
if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'] && $conference['type'] == 'scienceolympics'){
$title = i18n("Manage Students");
send_header($title, array("School Access" => "schoolaccess.php"));
draw_list();
}else{
header('Location: schoolaccess.php');
}
// draw an editable list of all students for this school in the users_stunt table
function draw_list(){
}