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

家庭日报报告

导出PDF报告 发送邮件
报告概览
报告日期
{{ today }}
昨日日期
{{ yesterday }}
昨日阅读记录
{{ yesterday_reading|length }} 条
{% if yesterday_reading %}
{% for reading in yesterday_reading %}
{{ reading.speaker.name }}
{{ reading.title }}
{{ reading.get_type_display }} {% if reading.source %} {{ reading.source }} {% endif %}
{% if reading.progress %}
进度:{{ reading.progress }}%
{% endif %}
{% endfor %}
{% else %}

昨日没有阅读记录

{% endif %}
昨日感悟记录
{{ yesterday_insight|length }} 条
{% if yesterday_insight %}
{% for insight in yesterday_insight %}
{{ insight.speaker.name }}

{{ insight.content }}

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

昨日没有感悟记录

{% endif %}
今日计划
{{ today_plan|length }} 项
{% if today_plan %}
{% for plan in today_plan %} {% endfor %}
发言人 类型 内容 优先级 状态
{{ plan.speaker.name }} {{ plan.get_type_display }} {{ plan.content }} {{ plan.get_priority_display }} {{ plan.get_status_display }}
{% else %}

今天还没有计划

{% endif %}
昨日汇总记录
{{ yesterday_summary|length }} 条
{% 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 %}
历史PDF报告
{% for date in historical_dates %} {% endfor %} {% if has_earlier_pdfs %} {% endif %}
{% endblock %}