feat: Add intersex option for animals, fix bug

This commit is contained in:
moanos [he/him] 2024-11-21 20:37:38 +01:00
parent e6f5a42d15
commit 8d2d80c30e

View File

@ -244,11 +244,14 @@ class AdoptionNotice(models.Model):
return sexes
def sex_code(self):
# Treat Intersex as mixed in order to increase their visibility
if len(self.sexes) > 1:
return "mixed"
elif self.sexes.pop() == SexChoices.MALE:
sex = self.sexes.pop()
if sex == SexChoices.MALE:
return "male"
elif self.sexes.pop() == SexChoices.FEMALE:
elif sex == SexChoices.FEMALE:
return "female"
else:
return "mixed"