|
|
|
@ -1770,7 +1770,9 @@ class Tournament(BaseModel): |
|
|
|
def umpire_phone(self): |
|
|
|
def umpire_phone(self): |
|
|
|
if self.umpire_custom_phone is not None: |
|
|
|
if self.umpire_custom_phone is not None: |
|
|
|
return self.umpire_custom_phone |
|
|
|
return self.umpire_custom_phone |
|
|
|
return self.event.creator.phone |
|
|
|
if self.event and self.event.creator: |
|
|
|
|
|
|
|
return self.event.creator.phone |
|
|
|
|
|
|
|
return None |
|
|
|
|
|
|
|
|
|
|
|
def calculate_time_to_confirm(self, waiting_list_count): |
|
|
|
def calculate_time_to_confirm(self, waiting_list_count): |
|
|
|
""" |
|
|
|
""" |
|
|
|
|