We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7622205 + 4e26f5a commit 09d7ef3Copy full SHA for 09d7ef3
1 file changed
src/apps/competitions/emails.py
@@ -10,7 +10,8 @@ def send_participation_requested_emails(participant):
10
return
11
12
context = {
13
- 'participant': participant
+ 'participant': participant,
14
+ 'user': participant.user
15
}
16
# Notify Organizers
17
codalab_send_mail(
@@ -36,7 +37,8 @@ def send_participation_accepted_emails(participant):
36
37
38
39
40
41
42
43
44
context_data=context,
@@ -60,7 +62,8 @@ def send_participation_denied_emails(participant):
60
62
61
63
64
65
66
67
68
69
0 commit comments