Filter meal suggestions by simple flavor profiles

This commit is contained in:
2026-04-13 18:47:39 +02:00
parent f85ec81851
commit 5a1c1d5c41
5 changed files with 193 additions and 35 deletions
+18
View File
@@ -67,6 +67,24 @@ BUILDER_DESCRIPTIONS = {
BUILDER_OPTIONS = [(key, label) for key, label in BUILDER_LABELS.items()]
FOOD_FLAVOR_OPTIONS = [
("neutral", "Neutral"),
("sweet", "Süß"),
("savory", "Herzhaft"),
]
FOOD_FLAVOR_LABELS = {
"neutral": "Neutral",
"sweet": "Süß",
"savory": "Herzhaft",
}
FOOD_FLAVOR_DESCRIPTIONS = {
"neutral": "Passt ruhig in beide Richtungen und bleibt flexibel.",
"sweet": "Passt eher zu süßen Kombinationen, Frühstücksideen oder kleinen Snacks.",
"savory": "Passt eher zu herzhaften Kombinationen und ruhigeren Hauptmahlzeiten.",
}
FOOD_ROLE_LABELS = {
"main": "Hauptbaustein",
"base": "Basis",