choices in seperate modules

This commit is contained in:
Gunther Weissenbaeck 2024-02-05 22:07:02 +01:00
parent 81d7671687
commit 15a63e0c75
2 changed files with 22 additions and 0 deletions

6
app/aviary/choices.py Normal file
View file

@ -0,0 +1,6 @@
CHOICE_AVIARY = [
""" Choices for Aviary Model """
("Offen", "Offen"),
("Geschlossen", "Geschlossen"),
("Gesperrt", "Gesperrt"),
]

16
app/bird/choices.py Normal file
View file

@ -0,0 +1,16 @@
CHOICE_AGE = [
("unbekannt", "unbekannt"),
("Ei", "Ei"),
("Nestling", "Nestling"),
("Ästling", "Ästling"),
("Juvenil", "Juvenil"),
("Adult", "Adult"),
]
CHOICE_SEX = [
("Weiblich", "Weiblich"),
("Männlich", "Männlich"),
("Unbekannt", "Unbekannt"),
]