{% extends 'core/base.html' %} {% block content %}
今日概览
日期:{{ today }}
今日计划
{% if today_plan %}
    {% for plan in today_plan %}
  • {{ plan.content }} - {{ plan.get_type_display }} - {{ plan.get_priority_display }}
    {{ plan.get_status_display }}
  • {% endfor %}
{% else %}

今天还没有计划,快去添加吧!

{% endif %}
待处理事项
{% if pending_family_tasks %}
    {% for task in pending_family_tasks %}
  • {{ task.content }} - {{ task.get_type_display }}
    {{ task.get_priority_display }}
  • {% endfor %}
{% else %}

没有待处理的家庭事项

{% endif %} 查看所有家庭事项
昨日记录 ({{ yesterday }})
阅读记录
{% if yesterday_reading %}
    {% for reading in yesterday_reading %}
  • {{ reading.title }} ({{ reading.get_type_display }}) {% if reading.source %} - {{ reading.source }} {% endif %} {% if reading.progress %}
    进度:{{ reading.progress }}
    {% endif %} {% if reading.note %}
    笔记:{{ reading.note|truncatechars:100 }}
    {% endif %} {% if reading.file %} {% endif %}
  • {% endfor %}
{% else %}

昨日没有阅读记录

{% endif %}
感悟记录
{% if yesterday_insight %}
    {% for insight in yesterday_insight %}
  • {{ insight.content }} {% if insight.file %} {% endif %}
  • {% endfor %}
{% else %}

昨日没有感悟记录

{% endif %}
汇总记录
{% if yesterday_summary %}
    {% for summary in yesterday_summary %}
  • {{ summary.category.name }} - {{ summary.speaker.name }}
    {{ summary.content }}
    {% if summary.source %} 来源:{{ summary.source }} {% endif %} {% if summary.file %} {% endif %}
  • {% endfor %}
{% else %}

昨日没有汇总记录

{% endif %}
{% endblock %}