Implement question review flow with category and status filters; add templates for review start, question display, and completion

This commit is contained in:
Ross
2025-10-27 10:21:07 +00:00
parent ec45464e58
commit 8380ca1dd9
8 changed files with 236 additions and 34 deletions
+6 -1
View File
@@ -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(