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 @@

{{ tournament.full_name }}

{{ tournament.local_start_date_formatted }}
+ {% if not tournament.is_custom_animation %}
{{ tournament.day_duration_formatted }}
{{ tournament.court_count }} piste{{ tournament.court_count|pluralize }}
+ {% endif %}

@@ -202,6 +204,7 @@ {% endif %}
+ {% if not tournament.is_custom_animation %}

{% if tournament.umpire_contact %}

Organisateur
@@ -214,7 +217,7 @@
{{ tournament.umpire_phone }}
{% endif %}

- + {% endif %} {% if tournament.information %}

Infos
@@ -225,7 +228,9 @@ {% if tournament.options_fee %}

+ {% if not tournament.is_custom_animation %}

Frais d'inscription
+ {% endif %}