mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-12-25 06:22:22 +00:00
Send mail to teams that are selected to the final
This commit is contained in:
parent
393ac6bd31
commit
317d9499d0
@ -177,6 +177,7 @@ class TeamDetailView(LoginRequiredMixin, DetailView):
|
|||||||
new_sol.save()
|
new_sol.save()
|
||||||
team.selected_for_final = True
|
team.selected_for_final = True
|
||||||
team.save()
|
team.save()
|
||||||
|
team.send_mail("select_for_final", "Sélection pour la finale, félicitations ! - TFJM²")
|
||||||
return redirect('tournament:team_detail', pk=team.pk)
|
return redirect('tournament:team_detail', pk=team.pk)
|
||||||
|
|
||||||
return self.get(request, *args, **kwargs)
|
return self.get(request, *args, **kwargs)
|
||||||
|
21
templates/mail_templates/select_for_final.html
Normal file
21
templates/mail_templates/select_for_final.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Sélection pour la finale - TFJM²</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
Bonjour {{ user }},<br>
|
||||||
|
<br>
|
||||||
|
Félicitations ! Votre équipe « {{ team.name }} » ({{ team.trigram }}) est sélectionnée pour la finale nationale !<br>
|
||||||
|
<br>
|
||||||
|
La finale aura lieu du {{ tournament.date_start }} au {{ tournament.date_end }}. Vous pouvez peaufiner vos solutions
|
||||||
|
si vous le souhaitez jusqu'au {{ tournament.date_solutions }}.<br>
|
||||||
|
<br>
|
||||||
|
Bravo encore !<br>
|
||||||
|
<br>
|
||||||
|
Cordialement,<br>
|
||||||
|
<br>
|
||||||
|
Le comité national d'organisation du TFJM²
|
||||||
|
</body>
|
||||||
|
</html>
|
12
templates/mail_templates/select_for_final.txt
Normal file
12
templates/mail_templates/select_for_final.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Bonjour {{ user }},
|
||||||
|
|
||||||
|
Félicitations ! Votre équipe « {{ team.name }} » ({{ team.trigram }}) est sélectionnée pour la finale nationale !
|
||||||
|
|
||||||
|
La finale aura lieu du {{ tournament.date_start }} au {{ tournament.date_end }}. Vous pouvez peaufiner vos solutions
|
||||||
|
si vous le souhaitez jusqu'au {{ tournament.date_solutions }}.
|
||||||
|
|
||||||
|
Bravo encore !
|
||||||
|
|
||||||
|
Cordialement,
|
||||||
|
|
||||||
|
Le comité national d'organisation du TFJM²
|
Loading…
Reference in New Issue
Block a user