Implement improved marking UI with new endpoints and templates for enhanced user experience

This commit is contained in:
Ross
2025-11-11 11:34:05 +00:00
parent 9a9ce11ccb
commit 1997d013d8
5 changed files with 481 additions and 0 deletions
+3
View File
@@ -102,6 +102,9 @@ urlpatterns = [
views.exam_review_question_summary,
name="exam_review_question_summary",
),
# New improved marking UI (mark2) and small toggle endpoint used by JS/HTMX
path("exam/<int:exam_pk>/<int:sk>/mark2", views.mark2, name="mark2"),
path("exam/mark2/toggle", views.mark2_toggle_answer, name="mark2_toggle_answer"),
]
urlpatterns.extend(generic_view_urls(views.GenericViews))