diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index cbbaaf2..384827c 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -1225,7 +1225,10 @@ class Tournament(BaseModel): # Entry fee if self.entry_fee is not None and self.entry_fee > 0: formatted_fee = currency_service.format_amount(self.entry_fee, self.currency_code) - options.append(f"Frais d'inscription: {formatted_fee} par joueur") + if self.is_custom_animation(): + options.append(f"{formatted_fee} par personne") + else: + options.append(f"Frais d'inscription: {formatted_fee} par joueur") # Club member fee reduction if self.club_member_fee_deduction and self.club_member_fee_deduction > 0: diff --git a/tournaments/templates/tournaments/tournament_info.html b/tournaments/templates/tournaments/tournament_info.html index 12094f0..76fc5ea 100644 --- a/tournaments/templates/tournaments/tournament_info.html +++ b/tournaments/templates/tournaments/tournament_info.html @@ -176,8 +176,10 @@
@@ -202,6 +204,7 @@ {% endif %}
{% if tournament.umpire_contact %}
+ {% if not tournament.is_custom_animation %}