{% extends "base.html" %} {% block title %}{{ item_kind_labels[kind] }} | Nouri{% endblock %} {% block content %}

{{ item_kind_labels[kind] }}

{{ item_kind_labels[kind] }}

{% if kind == 'food' %}

Hier stehen alle aktiven Lebensmittel, egal ob sie gerade zuhause sind oder im Moment fehlen. Archiviertes bleibt bewusst außen vor.

{% else %}

Gemeinsame und persönliche Ideen bleiben hier ruhig sortiert, mit einem klaren Blick darauf, für wen etwas gedacht ist.

{% endif %}
{% if kind == 'food' %} Schnell anlegen {% endif %} Neu anlegen
Zurücksetzen
{% if items %}
{% for item in items %} {% if item.kind == 'food' %} {% 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') %}
{% if item.can_edit %} {{ item.name }} bearbeiten
{{ csrf_input() }}
{% endif %}
{% if item.photo_filename %} {{ item.name }} {% else %}
{% endif %}

{{ item.name }}

{% else %}
{% if item.photo_filename %} {{ item.name }} {% else %}
{{ item.name[:1] }}
{% endif %}
{{ item.visibility_label }} {{ item.owner_label }} {{ item.for_label }}
{{ item.meal_type_label }} {{ energy_density_labels[item.energy_density] }} {% for tag in item.meal_tag_labels %} {{ tag }} {% endfor %}
{% if item.kind != 'food' and item.dayparts %}
{% for daypart in item.dayparts %} {{ daypart }} {% endfor %}
{% endif %} {% if item.components %}

Mit: {{ item.components|join(', ') }}

{% endif %} {% if item.kind != 'food' and item.note %}

{{ item.note }}

{% endif %}
{% if item.can_edit %} Bearbeiten {% endif %} Im Tagesplan öffnen
{{ csrf_input() }}
{% if item.can_edit %}
{{ csrf_input() }}
{% endif %}
{% endif %} {% endfor %}
{% else %}

Keine passenden Einträge

Mit einer kleinen Suche oder einem anderen Filter findest du meist schnell wieder das Richtige.

Neuen Eintrag anlegen
{% endif %} {% endblock %}