.
This commit is contained in:
+1
-1
@@ -55,7 +55,7 @@ urlpatterns = [
|
|||||||
path("exam/json/unbased", views.active_exams_unbased, name="active_exams_unbased"),
|
path("exam/json/unbased", views.active_exams_unbased, name="active_exams_unbased"),
|
||||||
path("exam/submit", views.exam_submit, name="global_exam_answers_submit"),
|
path("exam/submit", views.exam_submit, name="global_exam_answers_submit"),
|
||||||
#path('', include('generic.urls')),
|
#path('', include('generic.urls')),
|
||||||
path("feedback/<str:question_type>/<int:pk>/?", views.AddQuestionNote.as_view(), name="feedback_create"),
|
path("feedback/<str:question_type>/<int:pk>", views.AddQuestionNote.as_view(), name="feedback_create"),
|
||||||
#path("feedback/", views.AddQuestionNote.as_view(), name="feedback"),
|
#path("feedback/", views.AddQuestionNote.as_view(), name="feedback"),
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+32
-1
@@ -1005,4 +1005,35 @@ class RapidViewSet(RevisionMixin, viewsets.ModelViewSet):
|
|||||||
|
|
||||||
class ExamDelete(RevisionMixin, AuthorOrCheckerRequiredMixin, DeleteView):
|
class ExamDelete(RevisionMixin, AuthorOrCheckerRequiredMixin, DeleteView):
|
||||||
model = Exam
|
model = Exam
|
||||||
success_url = reverse_lazy("rapids:index")
|
success_url = reverse_lazy("rapids:index")
|
||||||
|
class AddSuggestedAnswer(LoginRequiredMixin, CreateView):
|
||||||
|
model = QuestionNote
|
||||||
|
form_class = QuestionNoteForm
|
||||||
|
|
||||||
|
#fields = ("author", "note_type", "note")
|
||||||
|
|
||||||
|
|
||||||
|
def get_form_kwargs(self):
|
||||||
|
kwargs = super(AddQuestionNote, self).get_form_kwargs()
|
||||||
|
# update the kwargs for the form init method with yours
|
||||||
|
kwargs.update(self.kwargs) # self.kwargs contains all url conf params
|
||||||
|
return kwargs
|
||||||
|
|
||||||
|
def get_initial(self):
|
||||||
|
pk = self.kwargs["pk"]
|
||||||
|
question_type = self.kwargs["question_type"]
|
||||||
|
if question_type == "rapid":
|
||||||
|
question = Rapid
|
||||||
|
content_type = ContentType.objects.get(model="rapid")
|
||||||
|
elif question_type == "anatomy":
|
||||||
|
question = AnatomyQuestion
|
||||||
|
content_type = ContentType.objects.get(model="anatomyquestion")
|
||||||
|
elif question_type == "long":
|
||||||
|
question = Long
|
||||||
|
content_type = ContentType.objects.get(model="long")
|
||||||
|
else:
|
||||||
|
raise PermissionError()
|
||||||
|
|
||||||
|
get_object_or_404(question, pk=pk)
|
||||||
|
return { "content_type" : content_type,
|
||||||
|
"object_id" : pk }
|
||||||
Reference in New Issue
Block a user