{% extends "base.html" %} {% block title %}Wochenansicht | Nouri{% endblock %} {% block content %}

Wochenansicht

Ein ruhiger Blick auf die nächsten sieben Tage

Du kannst bestehende Einträge zwischen Tagen und Tageszeiten verschieben, Vorlagen anwenden und gleichzeitig sehen, was erst später für den Einkauf relevant wird.

Vorige Woche {{ week_start.strftime('%d.%m.%Y') }} bis {{ week_end.strftime('%d.%m.%Y') }} Nächste Woche

Wochenvorlagen

Als Vorlage speichern
{% if week_templates %}
{% for template in week_templates %}
{{ csrf_input() }}
{{ template.name }} {{ template.visibility_label }} · {{ template.owner_label }}
{% endfor %}
{% else %}

Wenn eine Woche sich bewährt hat, kannst du sie hier später als Wochenvorlage wiederverwenden.

{% endif %}
{% if week_hints %}

Für diese Woche

{% for hint in week_hints %}

{{ hint }}

{% endfor %}
{% endif %}
{% if upcoming_entries %}

Kommt später zum Einkauf dazu

{{ household_settings.shopping_prep_days }} Tag{% if household_settings.shopping_prep_days != 1 %}e{% endif %} Vorlauf
{% for entry in upcoming_entries %} {{ entry.item_name }} · ab {{ entry.activation_label }} {% endfor %}
{% endif %}
{% for card in week_cards %}

{{ weekday_name(card.date) }}

{{ card.date.strftime('%d.%m.%Y') }}

{% if card.date == today %} heute {% endif %}
{% if card.filled_dayparts %}

{{ card.planned_count }} Einträge

{% for slot in card.filled_dayparts %} {{ slot.name }} · {{ slot.count }} {% endfor %}

{{ card.preview_items | join(', ') }}

{% else %}

Noch offen. Du kannst den Tag ganz leicht nach und nach füllen.

{% endif %}
{% for slot in card.slots %}
{{ slot.daypart.name }} {{ slot.entries|length }}
{% if slot.entries %}
{% for entry in slot.entries %}
{{ entry.item_name }} {{ entry.visibility_label }} · {{ entry.for_label }}
{% endfor %}
{% else %}

Hierher ziehen

{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}