We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ebfb6c commit f08ef58Copy full SHA for f08ef58
evap/staff/views.py
@@ -1067,7 +1067,9 @@ def create_exam_evaluation(request):
1067
1068
evaluation_end_date = exam_date - timedelta(days=1)
1069
if evaluation.vote_start_datetime > evaluation_end_date:
1070
- messages.error(request, _("The exam date is before the start date of the main evaluation. No exam evaluation created."))
+ messages.error(
1071
+ request, _("The exam date is before the start date of the main evaluation. No exam evaluation created.")
1072
+ )
1073
return HttpResponse()
1074
1075
evaluation.weight = 9
0 commit comments