diff --git a/tournaments/models/club.py b/tournaments/models/club.py
index df51b2b..f11e6ef 100644
--- a/tournaments/models/club.py
+++ b/tournaments/models/club.py
@@ -42,7 +42,7 @@ class Club(BaseModel):
return court.name
if index is not None:
- return f"Terrain {index + 1}"
+ return f"Piste {index + 1}"
return ""
diff --git a/tournaments/models/court.py b/tournaments/models/court.py
index 1fcbe52..57f6908 100644
--- a/tournaments/models/court.py
+++ b/tournaments/models/court.py
@@ -17,4 +17,4 @@ class Court(BaseModel):
if self.name:
return self.name
else:
- return f"Terrain {self.index + 1}"
+ return f"Piste {self.index + 1}"
diff --git a/tournaments/models/match.py b/tournaments/models/match.py
index c45ac69..4dc43fe 100644
--- a/tournaments/models/match.py
+++ b/tournaments/models/match.py
@@ -67,7 +67,7 @@ class Match(SideStoreModel):
if club:
return club.court_name(index)
elif index is not None:
- return f"Terrain {index + 1}"
+ return f"Piste {index + 1}"
return ""
def backup_name(self):
diff --git a/tournaments/templates/tournaments/broadcast/broadcasted_planning.html b/tournaments/templates/tournaments/broadcast/broadcasted_planning.html
index a8d60f2..fbd64cc 100644
--- a/tournaments/templates/tournaments/broadcast/broadcasted_planning.html
+++ b/tournaments/templates/tournaments/broadcast/broadcasted_planning.html
@@ -292,7 +292,7 @@