fix cloning

This commit is contained in:
Ross
2020-12-27 17:26:28 +00:00
parent c6d2ff326c
commit ffc4da8dff
5 changed files with 234 additions and 173 deletions
+1
View File
@@ -14,6 +14,7 @@ urlpatterns = [
path("question/<int:pk>/answer/",
views.answer_question,
name="answer_question"),
path("question/<int:pk>/clone", views.QuestionClone.as_view(), name="question_clone"),
path("exam/<int:pk>/<int:sk>/mark", views.mark, name="mark"),
path("exam/<int:pk>/mark", views.mark_overview, name="mark_overview"),
path("exam/<int:pk>/<int:sk>/", views.exam_take, name="exam_take"),