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

昨日记录 {{ yesterday }}

返回首页
阅读记录
{{ reading_records|length }} 条
{% if reading_records %}
{% for reading in reading_records %} {% endfor %}
类型 标题 操作
{{ reading.get_type_display }} {{ reading.title }} {% if reading.source %}
{{ reading.source }}
{% endif %} {% if reading.progress %}
{{ reading.progress }}%
{% endif %} {% if reading.note %}
{{ reading.note|truncatechars:30 }}
{% endif %}
{% if reading.file %} {% endif %}
{% else %}

昨日没有阅读记录

添加阅读记录
{% endif %}
感悟记录
{{ insight_records|length }} 条
{% if insight_records %}
{% for insight in insight_records %}

{{ insight.content }}

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

昨日没有感悟记录

添加感悟记录
{% endif %}
{% endblock %}