Refactor exam date handling to use start_date instead of date in bulk update functionality

This commit is contained in:
Ross
2025-11-06 22:01:57 +00:00
parent 54afa6e6bd
commit ebad9c6bd9
2 changed files with 62 additions and 31 deletions
+1 -1
View File
@@ -1045,7 +1045,7 @@ class ExamViews(View, LoginRequiredMixin):
continue
if new_date is not None:
exam.date = new_date
exam.start_date = new_date
exam.save()
return render(request, "generic/partials/_exam_list.html", {"filter": filter, "app_name": self.app_name})