|
|
|
|
@ -167,6 +167,10 @@ class Tournament(BaseModel): |
|
|
|
|
return str |
|
|
|
|
|
|
|
|
|
def short_full_name(self): |
|
|
|
|
# For animation tournaments with custom names, just return the name |
|
|
|
|
if self.federal_level_category == 0 and self.name: # FederalLevelCategory.UNLISTED (Animation) with custom name |
|
|
|
|
return self.name |
|
|
|
|
|
|
|
|
|
age = self.age() |
|
|
|
|
str = f"{self.level()}{self.category()[0]}" |
|
|
|
|
if age is not None and self.federal_age_category != 200: |
|
|
|
|
|