$def with (course,task,individual_data,classroom_data) $# $# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for $# more information about the licensing of this file. $# $var title: $:task.get_name() - $:course.get_name() $var Column: $:template_helper.call('course_admin_menu',course=course,current='tasks') $def NavbarF(): $var Navbar: $:NavbarF()

Results for task "$task.get_name()"

$for user in individual_data:
Student Status # submissions
$if user["realname"] != "": $user["realname"] ($user["username"] - email) $else: $user["username"] $if user["status"] == "notviewed": Not viewed $elif user["status"] == "notattempted": Not attempted (viewed) $elif user["status"] == "succeeded": Succeeded ($user["grade"]%) $else: Failed ($user["grade"]%) $user["tried"]
$ text = ["My classrooms","Other classrooms"] $for ind in range(0,2): $if len(classroom_data[ind]) > 0: $if len(classroom_data[0]) > 0 and len(classroom_data[1]) > 0: $for classroom in classroom_data[ind]:
Classroom Status # submissions
$text[ind]
$classroom['description'] $if classroom["status"] == "notviewed": Not viewed $elif classroom["status"] == "notattempted": Not attempted (viewed) $elif classroom["status"] == "succeeded": Succeeded ($classroom["grade"]%) $else: Failed ($classroom["grade"]%) $classroom["tried"]