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"),
]