From 9454d932d539a2e37f22b949430abafa0dde424c Mon Sep 17 00:00:00 2001 From: Raz Date: Wed, 16 Apr 2025 16:03:57 +0200 Subject: [PATCH] add a confirm if place signal on team reg --- tournaments/services/email_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/services/email_service.py b/tournaments/services/email_service.py index 919cde4..27247b2 100644 --- a/tournaments/services/email_service.py +++ b/tournaments/services/email_service.py @@ -333,7 +333,7 @@ class TournamentEmailService: "Bonjour,\n\n", ] if captain.registration_status == RegistrationStatus.CANCELED: - body_parts.append("\n\nLe temps accordé pour confirmer votre inscription s'est écoulé.") + body_parts.append("Le temps accordé pour confirmer votre inscription s'est écoulé.") body_parts.append(f"Vous avez été replacé en liste d'attente du tournoi {tournament_details_str}, prévu le {tournament.formatted_start_date()} au club {tournament.event.club.name}") else: body_parts.append(f"Le juge-arbitre vous a placé en liste d'attente du tournoi {tournament_details_str}, prévu le {tournament.formatted_start_date()} au club {tournament.event.club.name}")