Raz 10 months ago
commit c87da05c77
  1. 2
      tournaments/models/tournament.py

@ -681,7 +681,7 @@ class Tournament(models.Model):
def round_to_show(self): def round_to_show(self):
# print('===== round_to_show') # print('===== round_to_show')
last_started_match = self.first_unfinished_match() last_started_match = self.first_unfinished_match()
if last_started_match: if last_started_match and last_started_match.round:
# print(f'last_started_match = {last_started_match.name}') # print(f'last_started_match = {last_started_match.name}')
current_round = last_started_match.round.root_round() current_round = last_started_match.round.root_round()
# print(f'round_to_show > current_round: {current_round.name()}') # print(f'round_to_show > current_round: {current_round.name()}')

Loading…
Cancel
Save