182
182
# Get the student's pass/fail for each exercise in this worksheet
183
183
for worksheet_exercise in worksheet.worksheet_exercises:
184
184
exercise = worksheet_exercise.exercise
185
186
optional = worksheet_exercise.optional
187
done, _ = get_exercise_status(store, user, exercise)
188
done, _ = get_exercise_status(store, user, exercise, worksheet)
188
189
# done is a bool, whether this student has completed that problem