From 7a0341e7cfdcad918c704e07a64b2ad0f20fd132 Mon Sep 17 00:00:00 2001
From: Emmy D'Anello
Date: Sun, 19 May 2024 20:40:35 +0200
Subject: [PATCH] Display mention on tfjm.org page
Signed-off-by: Emmy D'Anello
---
participation/management/commands/export_results.py | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/participation/management/commands/export_results.py b/participation/management/commands/export_results.py
index 48743c6..8cdc114 100644
--- a/participation/management/commands/export_results.py
+++ b/participation/management/commands/export_results.py
@@ -40,7 +40,7 @@ class Command(BaseCommand):
if tournament.final:
self.w(f"La finale a eu lieu le weekend du {date_start} au {date_end} et a été remporté par l'équipe "
f"{notes[0][0].team.name} suivie de l'équipe {notes[1][0].team.name}. "
- f"Les deux premières équipes sont sélectionnées pour représenter la France lors de l'ITYM.
")
+ f"Les deux premières équipes sont sélectionnées pour représenter la France lors de l'ETEAM.
")
else:
self.w(f"Le tournoi de {name} a eu lieu le weekend du {date_start} au {date_end} et a été remporté par "
f"l'équipe {notes[0][0].team.name}.
")
@@ -70,14 +70,10 @@ class Command(BaseCommand):
pool_note = pool.average(participation)
self.w(f"\t{pool_note:.01f} | ")
self.w(f"\t{note:.01f} | ")
- if i == 0:
- self.w("\t1er prix | ")
- elif i < (5 if tournament.final else 3):
- self.w(f"\t{i + 1}ème prix | ")
- elif i < 2 * len(notes) / 3:
- self.w("\tMention très honorable | ")
+ if tournament.final:
+ self.w(f"\t{participation.mention_final} | ")
else:
- self.w("\tMention honorable | ")
+ self.w(f"\t{participation.mention} | ")
self.w("")
self.w("")
self.w("")