forked from science-ation/science-ation
18 lines
448 B
PHP
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(){
|
||
|
|
||
|
|
||
|
}
|