$def with (grade, course, task, submissions)
$var title: $:task.get_name() - $:task.get_course().get_name()
$# Left column content
$def ColumnF():
Informations
$if task.get_authors():
| Author(s) |
$",".join(task.get_authors()) |
| Deadline |
$task.get_deadline()
|
| Grade |
$user_manager.get_task_grade(task)%
|
| Grading weight |
$task.get_grading_weight() |
$if user_manager.has_staff_rights_on_course(course):
Administration
$if not course.is_open_to_non_staff():
This course is currently invisible for students.
You can change this by modifying the "accessible" option in the configuration of the course.
$if not task.is_visible_by_students():
This task is currently invisible for students.
You can change this by modifying the "accessible" option in the configuration of the task.
$else:
Submitting as
$:template_helper.call('task_menu', course=course, task=task, template_helper=template_helper)
$var Column: $:ColumnF()
$def NavbarF():
- $task.get_course().get_name()
- $task.get_name() (current)
$var Navbar: $:NavbarF()
$# Start content
Final grade