Files
edx-platform/djangoapps/courseware/global_course_settings.py

29 lines
627 B
Python

GRADER = [
{
'course_format' : "Homework",
'min_count' : 12,
'drop_count' : 2,
'short_label' : "HW",
'weight' : 0.15,
},
{
'course_format' : "Lab",
'min_count' : 12,
'drop_count' : 2,
'category' : "Labs",
'weight' : 0.15
},
{
'section_format' : "Examination",
'section_name' : "Midterm Exam",
'short_label' : "Midterm",
'weight' : 0.3,
},
{
'section_format' : "Examination",
'section_name' : "Final Exam",
'short_label' : "Final",
'weight' : 0.4,
}
]