Skip to content

Commit

Permalink
clarification about the score
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeygrigorev committed Jun 18, 2024
1 parent f57acf4 commit 7a4b23f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion courses/views/homework.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,15 @@ def process_homework_submission(

submission.save()

success_message = (
"Thank you for submitting your homework, now your solution " +
"is saved. You can update it at any point. You will see " +
"your score after the form is closed."
)

messages.success(
request,
"Thank you for submitting your homework, now your solution is saved. You can update it at any point.",
success_message,
extra_tags="homework",
)

Expand Down

0 comments on commit 7a4b23f

Please sign in to comment.