many Longs fixes
This commit is contained in:
+8
-8
@@ -79,8 +79,8 @@ urlpatterns = [
|
||||
),
|
||||
path(
|
||||
"exam/<int:exam_id>/<int:sk>/mark",
|
||||
views.mark_question_overview,
|
||||
name="mark_question_overview",
|
||||
views.mark,
|
||||
name="mark",
|
||||
),
|
||||
path("exam/<int:pk>/authors", views.ExamAuthorUpdate.as_view(), name="exam_authors"),
|
||||
path(
|
||||
@@ -88,12 +88,12 @@ urlpatterns = [
|
||||
views.refresh_exam_question_json,
|
||||
name="refresh_exam_question_json",
|
||||
),
|
||||
path("exam/<int:pk>/scores", views.exam_scores_all, name="exam_scores_all"),
|
||||
path(
|
||||
"exam/<int:pk>/scores/<int:cid>/<str:passcode>/",
|
||||
views.exam_scores_cid_user,
|
||||
name="exam_scores_cid_user",
|
||||
),
|
||||
#path("exam/<int:pk>/scores", views.exam_scores_all, name="exam_scores_all"),
|
||||
# path(
|
||||
# "exam/<int:pk>/scores/<int:cid>/<str:passcode>/",
|
||||
# views.exam_scores_cid_user,
|
||||
# name="exam_scores_cid_user",
|
||||
# ),
|
||||
path("exam/create", views.ExamCreate.as_view(), name="exam_create"),
|
||||
path("exam/<int:exam_id>/clone", views.ExamClone.as_view(), name="exam_clone"),
|
||||
path("exam/<int:pk>/update", views.ExamUpdate.as_view(), name="exam_update"),
|
||||
|
||||
Reference in New Issue
Block a user