Add exam review functionality with navigation for questions
This commit is contained in:
@@ -315,6 +315,16 @@ def generic_view_urls(generic_views: GenericViewBase):
|
||||
generic_views.question_user_answers,
|
||||
name="question_user_answers",
|
||||
),
|
||||
path(
|
||||
"exam/<int:pk>/review/start",
|
||||
generic_views.exam_review_start,
|
||||
name="exam_review_start",
|
||||
),
|
||||
path(
|
||||
"exam/<int:pk>/review/<int:q_index>",
|
||||
generic_views.exam_review_question,
|
||||
name="exam_review_question",
|
||||
),
|
||||
path(
|
||||
"question/<int:pk>/user_answers/<str:answer_compare>/str",
|
||||
generic_views.question_user_answers_by_compare,
|
||||
|
||||
Reference in New Issue
Block a user