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.
17 lines
386 B
Python
17 lines
386 B
Python
STATUS_VALUES = ['Student', 'Employee', 'Guest']
|
|
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',
|
|
}
|