Implement question review flow with category and status filters; add templates for review start, question display, and completion
This commit is contained in:
+6
-1
@@ -287,10 +287,15 @@ def generic_view_urls(generic_views: GenericViewBase):
|
||||
name="question_reviews",
|
||||
),
|
||||
path(
|
||||
"question/review/",
|
||||
"question/review/start",
|
||||
generic_views.question_review_start,
|
||||
name="question_review_start",
|
||||
),
|
||||
path(
|
||||
"question/review/next",
|
||||
generic_views.question_review_next,
|
||||
name="question_review_next",
|
||||
),
|
||||
path("question/<int:pk>/thumbnail/fail", generic_views.question_thumbnail_fail, name="series_thumbnail_fail"),
|
||||
path("question/<int:pk>/thumbnail", generic_views.question_thumbnail, name="series_thumbnail"),
|
||||
path(
|
||||
|
||||
Reference in New Issue
Block a user