Skip to content
Snippets Groups Projects

Toggling pregrading and Identifying blank solutions

Open Ghost User requested to merge feature/toggle-pregrading into develop
Compare and Show latest version
3 files
+ 12
12
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
1
@@ -11,7 +11,7 @@ def add_test_data(app):
exam1 = Exam(id=1, name='exam 1', finalized=True)
db.session.add(exam1)
problem1 = Problem(id=1, name='Problem 1', exam_id=1)
problem1 = Problem(id=1, name='Problem 1', exam_id=1, grading_policy=1)
db.session.add(problem1)
problem_widget_1 = ProblemWidget(id=1, name='problem widget', problem_id=1, page=2,
Loading