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

历史记录查询

{{ start_date|date:"Y年m月d日" }} 至 {{ end_date|date:"Y年m月d日" }}

阅读记录
{{ reading_records|length }} 条
{% if reading_records %}
{% for record in reading_records %} {% endfor %}
日期 类型 标题 来源 进度
{{ record.date|date:"Y-m-d" }} {{ record.type.name }} {{ record.title }} {{ record.source|default:"-" }} {% if record.progress %}
{{ record.progress }}% {% else %} - {% endif %}
{% else %}

该时间段没有阅读记录

{% endif %}
感悟记录
{{ insight_records|length }} 条
{% if insight_records %}
{% for record in insight_records %}
{{ record.date|date:"Y-m-d" }} {{ record.speaker.name }}

{{ record.content|linebreaks }}

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

该时间段没有感悟记录

{% endif %}
汇总记录
{{ summary_records|length }} 条
{% if summary_records %}
{% for record in summary_records %}
{{ record.date|date:"Y-m-d" }} {{ record.category.name }} {{ record.speaker.name }}

{{ record.content|linebreaks }}

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

该时间段没有汇总记录

{% endif %}
家庭事项
{{ family_tasks|length }} 条
{% if family_tasks %}
{% for task in family_tasks %} {% endfor %}
创建时间 类型 内容 优先级 状态 截止日期
{{ task.created_at|date:"Y-m-d H:i" }} {{ task.type.name }} {{ task.content|truncatechars:50 }} {{ task.priority.name }} {{ task.status.name }} {% if task.deadline %} {% if task.is_overdue %} {{ task.deadline|date:"Y-m-d" }} (已逾期) {% else %} {{ task.deadline|date:"Y-m-d" }} {% endif %} {% else %} - {% endif %}
{% else %}

该时间段没有家庭事项

{% endif %}
今日计划
{{ today_plans|length }} 条
{% if today_plans %}
{% for plan in today_plans %} {% endfor %}
日期 发言人 内容 类型 优先级 状态
{{ plan.date|date:"Y-m-d" }} {{ plan.speaker.name }} {{ plan.content|truncatechars:50 }} {{ plan.type.name }} {{ plan.priority.name }} {{ plan.status.name }}
{% else %}

该时间段没有今日计划

{% endif %}
返回首页 导出PDF
{% endblock %}