{% extends "base.html" %} {% block title %}{% if item_set %}Paket bearbeiten{% else %}Neues Paket{% endif %} | Nouri{% endblock %} {% block content %} Kleines Paket {% if item_set %}{{ item_set.name }} bearbeiten{% else %}Paket anlegen{% endif %} Pakete bündeln wiederkehrende Dinge ganz leicht, zum Beispiel schnelles Frühstück, sicherer Snack oder Einkauf für zwei Tage. {{ csrf_input() }} Name des Pakets Beschreibung {{ form_data.description }} Sichtbarkeit {% for value, label in visibility_options %} {{ label }} {% endfor %} {{ visibility_descriptions[form_data.visibility] }} {% for suggestion in name_suggestions %} {{ suggestion }} {% endfor %} {% if selected_items %} Schon ausgewählt {% for item_id in form_data.item_ids %} {% endfor %} {% for item in selected_items %} {% if item.kind == 'meal' %} {% set item_icon_class = { 'breakfast': 'icon-daypart-breakfast', 'lunch': 'icon-daypart-lunch', 'dinner': 'icon-daypart-dinner', 'snack': 'icon-daypart-afternoon-snack', }.get(item.meal_type, 'icon-utensils') %} {% else %} {% set item_icon_class = { 'protein': 'icon-component-protein', 'carb': 'icon-component-carb', 'veg': 'icon-component-veg', 'fruit': 'icon-component-fruit', 'dairy': 'icon-component-dairy', 'nuts': 'icon-component-nuts', 'seeds': 'icon-component-seeds', 'neutral': 'icon-component-neutral', }.get(item.primary_builder_key or item.base_type, 'icon-component-neutral') %} {% endif %} × {{ item.name }} entfernen {% if item.photo_filename %} {% else %} {% endif %} {{ item.name }} {% endfor %} {% endif %} Einträge auswählen Einträge filtern {% for group in item_groups %} {{ group["title"] }} {{ group["items"]|length }} Einträge {% for item in group["items"] %} {% if item.kind == 'meal' %} {% set item_icon_class = { 'breakfast': 'icon-daypart-breakfast', 'lunch': 'icon-daypart-lunch', 'dinner': 'icon-daypart-dinner', 'snack': 'icon-daypart-afternoon-snack', }.get(item.meal_type, 'icon-utensils') %} {% else %} {% set item_icon_class = { 'protein': 'icon-component-protein', 'carb': 'icon-component-carb', 'veg': 'icon-component-veg', 'fruit': 'icon-component-fruit', 'dairy': 'icon-component-dairy', 'nuts': 'icon-component-nuts', 'seeds': 'icon-component-seeds', 'neutral': 'icon-component-neutral', }.get(item.primary_builder_key or item.base_type, 'icon-component-neutral') %} {% endif %} {% if item.photo_filename %} {% else %} {% endif %} {{ item.name }} {% endfor %} {% endfor %} Speichern Zurück {% endblock %}
Kleines Paket
Pakete bündeln wiederkehrende Dinge ganz leicht, zum Beispiel schnelles Frühstück, sicherer Snack oder Einkauf für zwei Tage.