choices in seperate modules
This commit is contained in:
parent
81d7671687
commit
15a63e0c75
2 changed files with 22 additions and 0 deletions
6
app/aviary/choices.py
Normal file
6
app/aviary/choices.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
CHOICE_AVIARY = [
|
||||||
|
""" Choices for Aviary Model """
|
||||||
|
("Offen", "Offen"),
|
||||||
|
("Geschlossen", "Geschlossen"),
|
||||||
|
("Gesperrt", "Gesperrt"),
|
||||||
|
]
|
16
app/bird/choices.py
Normal file
16
app/bird/choices.py
Normal 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"),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue