$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():
- $course.get_name()
-
-
- $task.get_name() (current)
$var Navbar: $:NavbarF()
Results for task "$task.get_name()"
| Student |
Status |
# submissions |
|
$for user in individual_data:
|
$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"] |
|
| Classroom |
Status |
# submissions |
|
$ 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:
| $text[ind] |
$for classroom in classroom_data[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"] |
|