You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
STATUS_VALUES = ['Student', 'Employee', 'Guest']
|
|
ALLERGENS = {
|
|
'Ei': 'Ei',
|
|
'En': 'Erdnüsse',
|
|
'Fi': 'Fisch',
|
|
'Gl': 'Glutenhaltiges Getreide',
|
|
'GlD': 'Dinkel',
|
|
'GlG': 'Gerste',
|
|
'GlH': 'Hafer',
|
|
'GlR': 'Roggen',
|
|
'GlW': 'Weizen',
|
|
'Kr': 'Krebstiere',
|
|
'Lac': 'Laktose',
|
|
'Lu': 'Lupinen',
|
|
'Mi': 'Milch',
|
|
'Sc': 'Schalenfrüchte',
|
|
'ScC': 'Cashews',
|
|
'ScH': 'Haselnüsse',
|
|
'ScM': 'Mandeln',
|
|
'ScP': 'Pistazien',
|
|
'ScW': 'Walnüsse',
|
|
'Se': 'Sesam',
|
|
'Sf': 'Senf',
|
|
'Sl': 'Sellerie',
|
|
'So': 'Soja',
|
|
'Sw': 'Schwefeldioxid / Sulphite',
|
|
'Wt': 'Weichtiere',
|
|
}
|
|
TYPES = {
|
|
'vn': 'Vegan',
|
|
've': 'Vegetarisch',
|
|
'BIO': 'Bio',
|
|
'IN': 'International',
|
|
'MV': 'MensaVital',
|
|
'S': 'Schwein',
|
|
'R': 'Rind',
|
|
'G': 'Geflügel',
|
|
'L': 'Lamm',
|
|
'AGS': 'Artgerechtes Schwein',
|
|
'AGR': 'Artgerechtes Rind',
|
|
'AGG': 'Artgerechtes Geflügel',
|
|
'AGL': 'Artgerechtes Lamm',
|
|
}
|
|
ALLERGENS_CHOICES = ((key, ALLERGENS[key]) for key in ALLERGENS)
|
|
TYPES_CHOICES = ((key, TYPES[key]) for key in TYPES)
|
|
ART_CHOICES = (('Mensa', 'Mensa'), ('Cafeteria', 'Cafeteria'))
|