23
23
This module provides functions for tutorial and worksheet computations.
26
28
from storm.locals import And, Asc, Desc, Store
30
32
from ivle.database import ExerciseAttempt, ExerciseSave, Worksheet, \
31
33
WorksheetExercise, Exercise
37
44
def get_exercise_status(store, user, worksheet_exercise, as_of=None):
38
45
"""Given a storm.store, User and Exercise, returns information about
39
46
the user's performance on that problem.