choices in seperate modules
This commit is contained in:
parent
81d7671687
commit
15a63e0c75
2 changed files with 22 additions and 0 deletions
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