= alertMessage(); ?>
Statistik nach Kurs zu =$category['data']['name'] ;?>
Kursname |
Anzahl der Schüler |
Angemeldet |
Genehmigt |
Abgelehnt |
|
0) {
foreach($courses as $courseEntry) {
$studentCount = countAllStudentsInCourse($courseEntry['id']);
$registeredCount = countStudentsByStatus($courseEntry['id'], 'Angemeldet');
$selectedCount = countStudentsByStatus($courseEntry['id'], 'Genehmigt');
$rejectedCount = countStudentsByStatus($courseEntry['id'], 'Abgelehnt');
?>
= $courseEntry['name']; ?> |
= $studentCount; ?> |
= $registeredCount; ?> |
= $selectedCount; ?> |
= $rejectedCount; ?> |
|
Keine Kurse vorhanden |