{% extends 'core/base.html' %} {% block content %}

早上好,{{ user.username }}!

今天是 {{ today }},祝您有美好的一天!

今日概览
{{ today }}
今日计划
{% if today_plan %}
{% for plan in today_plan %}
{% if plan.status == 'completed' %} {% else %} {% endif %}
{{ plan.content }}
{{ plan.get_type_display }} | {{ plan.get_priority_display }}
{{ plan.get_status_display }}
{% endfor %}
{% else %}

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

添加计划
{% endif %}
待处理事项
{{ pending_family_tasks|length }}
{% if pending_family_tasks %}
{% for task in pending_family_tasks %}
{{ task.content }}
{{ task.get_type_display }}
{{ task.get_priority_display }}
{% if task.deadline %}
截止:{{ task.deadline }}
{% endif %}
{% 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 %}
{% endfor %}
{% else %}

昨日没有阅读记录

{% endif %}
感悟记录
{% if yesterday_insight %}
{% for insight in yesterday_insight %}

{{ insight.content|truncatechars:100 }}

{% if insight.file %} 查看附件 {% endif %}
{% endfor %}
{% else %}

昨日没有感悟记录

{% endif %}
汇总记录
{% if yesterday_summary %}
{% for summary in yesterday_summary %}
{{ summary.category.name }} {{ summary.speaker.name }}

{{ summary.content|truncatechars:80 }}

{% if summary.source %} {{ summary.source }} {% endif %}
{% endfor %}
{% else %}

昨日没有汇总记录

{% endif %}
历史记录查询
导出PDF
{% endblock %}