This commit is contained in:
Ross
2021-12-15 19:17:40 +00:00
parent 64249e8d9f
commit 2ee5472ef2
3 changed files with 49 additions and 14 deletions
+8 -1
View File
@@ -78,9 +78,16 @@ urlpatterns = [
),
path(
"exam/<int:pk>/scores",
cache_page(60 * 1)(views.exam_scores_cid),
views.exam_scores_cid,
# cache_page(60 * 1)(views.exam_scores_cid),
name="exam_scores_cid",
),
path(
"exam/<int:pk>/scores/refresh",
views.exam_scores_refresh,
# cache_page(60 * 1)(views.exam_scores_cid),
name="exam_scores_refresh",
),
path(
"exam/<int:pk>/scores/<int:sk>/<str:passcode>/",
views.exam_scores_cid_user,