{% 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') }}
PDF exportieren
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 not card.filled_dayparts %}

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

{% endif %} {% if card.hidden_snack_slots %}

Snacks ergänzen

{% for hidden_slot in card.hidden_snack_slots %} {% endfor %}
{% 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 }}
{% if entry.can_edit %}

{{ entry.item_name }}

{{ slot.daypart.name }} · {{ weekday_name(card.date) }}, {{ card.date.strftime('%d.%m.%Y') }}

{{ csrf_input() }}
{{ csrf_input() }}
{% endif %} {% endfor %}
{% if slot.copy_allowed %}
{{ csrf_input() }}
{% endif %}
{% else %}

Hierher ziehen

{% if slot.is_snack_daypart %} {% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}