{% extends "base.html" %} {% block title %}{{ weekday }} – Bullet Journal{% endblock %} {% block content %}

{{ weekday }}, {{ target.strftime('%d.%m.%Y') }}

← Vortag {% if target.strftime('%Y-%m-%d') != today_str %} Heute {% endif %} Nächster Tag →

Neue Notiz

Notizen

{% if notes %}
Bullet Notiz Priorität Aktionen
{% for n in notes %}
{{ n.bullet_type }} {{ n.note_text }} {{ ['Niedrig','Mittel','Hoch'][n.priority] if n.priority <= 2 else n.priority }}
{% endfor %}
{% else %}

Noch keine Notizen für diesen Tag.

{% endif %}
{% endblock %}