{% extends "base.html" %} {% block title %}Future Log – Journal{% endblock %} {% block content %}

Future Log

Langfristiger Kalender – Aufgaben, die später erledigt werden.

Neuer Eintrag

{% if grouped %} {% for month_key, entries in grouped.items() %}

{{ month_key[5:7]|int }} / {{ month_key[0:4] }} {% if month_key == today_str %}aktuell{% endif %}

{{ month_stats[month_key].open }} offen {{ month_stats[month_key].done }} erledigt {{ month_stats[month_key].total }} gesamt
{% endfor %} {% else %}

Noch keine Einträge im Future Log. Füge oben deinen ersten Eintrag hinzu.

{% endif %} {% endblock %}