Simplify food builder wording in forms

This commit is contained in:
2026-04-13 18:15:27 +02:00
parent 93793a456e
commit bc31430a1e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ DEFAULT_CATEGORY_BUILDERS = {
BUILDER_LABELS = {
"protein": "Proteinquelle",
"carb": "Kohlenhydratquelle",
"carb": "Kohlenhydrate",
"veg": "Gemüse / Ballaststoffquelle",
"nuts": "Nüsse",
"seeds": "Saaten",
+2 -2
View File
@@ -53,7 +53,7 @@
{% if kind == 'food' %}
<label>
Passt eher zu
Baustein
<select name="base_type">
{% for value, label in builder_options %}
<option value="{{ value }}" {% if form_data.base_type == value %}selected{% endif %}>{{ label }}</option>
@@ -232,7 +232,7 @@
<input type="text" name="quick_food_name" value="{{ form_data.quick_food_name }}" placeholder="z. B. Hüttenkäse">
</label>
<label>
Passt eher zu
Baustein
<select name="quick_food_base_type">
{% for value, label in builder_options %}
<option value="{{ value }}" {% if form_data.quick_food_base_type == value %}selected{% endif %}>{{ label }}</option>