mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-12-25 05:42:23 +00:00
Fix mails to teams that are selected to the final
This commit is contained in:
parent
317d9499d0
commit
4b777d90b5
@ -177,7 +177,8 @@ class TeamDetailView(LoginRequiredMixin, DetailView):
|
||||
new_sol.save()
|
||||
team.selected_for_final = True
|
||||
team.save()
|
||||
team.send_mail("select_for_final", "Sélection pour la finale, félicitations ! - TFJM²")
|
||||
team.send_mail("select_for_final", "Sélection pour la finale, félicitations ! - TFJM²",
|
||||
final=Tournament.get_final())
|
||||
return redirect('tournament:team_detail', pk=team.pk)
|
||||
|
||||
return self.get(request, *args, **kwargs)
|
||||
|
@ -9,8 +9,8 @@ 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>
|
||||
La finale aura lieu du {{ final.date_start }} au {{ final.date_end }}. Vous pouvez peaufiner vos solutions
|
||||
si vous le souhaitez jusqu'au {{ final.date_solutions }}.<br>
|
||||
<br>
|
||||
Bravo encore !<br>
|
||||
<br>
|
||||
|
@ -2,8 +2,8 @@ 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 }}.
|
||||
La finale aura lieu du {{ final.date_start }} au {{ final.date_end }}. Vous pouvez peaufiner vos solutions
|
||||
si vous le souhaitez jusqu'au {{ final.date_solutions }}.
|
||||
|
||||
Bravo encore !
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user