A course being archived should not prevent superusers (or teachers of the course) from interacting with it as normal.
However, archived courses completely prevent anyone from taking quizzes (after clicking "Begin quiz"). This is due to
|
Assignment.objects.filter_visible(request.user).filter(course__archived=False), |
which always returns a 404 from
quiz_view() if the course is archived.
A course being archived should not prevent superusers (or teachers of the course) from interacting with it as normal.
However, archived courses completely prevent anyone from taking quizzes (after clicking "Begin quiz"). This is due to
tin/tin/apps/assignments/views.py
Line 718 in 797ae74
quiz_view()if the course is archived.