X-Git-Url: http://git.treefish.org/banana.git/blobdiff_plain/8db41c98817b1b48532dc3cebf4bea166e42bb70..a4f105d41d06053ff3a7b52572bd818b1a027149:/admin/summary.php diff --git a/admin/summary.php b/admin/summary.php index 345f5a0..68c026f 100644 --- a/admin/summary.php +++ b/admin/summary.php @@ -4,9 +4,14 @@ require 'include/session.inc'; require 'include/common.inc'; + if ($db->query("SELECT COUNT(*) FROM students")->fetch(PDO::FETCH_NUM)[0] == 0) { + block("red", "no students registered"); + exit; + } + block("black", "summary of everything for " . date("d.m.Y H:i")); - $result = $db->query("SELECT firstname, lastname, mnumber, blackboard FROM students ORDER BY lastname"); + $result = $db->query("SELECT firstname, lastname, mnumber, blackboard FROM students ORDER BY LOWER(lastname)"); print "
First name | Last name | Matr.nummer | Examples | Blackboard | "; @@ -18,7 +23,7 @@ print "" . $student['firstname'] . " | "; print "" . $student['lastname'] . " | "; print "" . $student['mnumber'] . " | "; - print "" . $totexdone . "/" . $SESSIONS_totex . " | "; + print "" . $totexdone . "/" . $SESSIONS_totex_nextinc . " | "; print "" . $student['blackboard'] . " | "; print ""; }